Skip to content
Snippets Groups Projects
Commit 363ac580 authored by Thilo Molitor's avatar Thilo Molitor Committed by Philipp Hörist
Browse files

[preview] Scroll to end after image insertion

parent 78436dbe
No related branches found
No related tags found
No related merge requests found
......@@ -356,6 +356,8 @@ class Base(object):
# (Gtk textview is NOT threadsafe by itself!!)
def add_to_textview():
try: # textview closed in the meantime etc.
at_end = self.textview.at_the_end()
buffer_ = repl_start.get_buffer()
iter_ = buffer_.get_iter_at_mark(repl_start)
buffer_.insert(iter_, "\n")
......@@ -374,6 +376,9 @@ class Base(object):
self.textview.tv.add_child_at_anchor(eb, anchor)
buffer_.delete(iter_,
buffer_.get_iter_at_mark(repl_end))
if at_end:
GObject.idle_add(self.textview.scroll_to_end_iter)
except Exception as ex:
log.warn("Exception while loading %s: %s" % (str(url), str(ex)))
return False
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment