go to end iter after each print_special_text if we don't have an argument with the iter where we have to insert text. See #7372
This commit is contained in:
parent
d8264118de
commit
18c4edb1d0
|
@ -1085,6 +1085,8 @@ class ConversationTextview(gobject.GObject):
|
||||||
special_text = otext[start:end]
|
special_text = otext[start:end]
|
||||||
if start > index:
|
if start > index:
|
||||||
text_before_special_text = otext[index:start]
|
text_before_special_text = otext[index:start]
|
||||||
|
if not iter_:
|
||||||
|
end_iter = buffer_.get_end_iter()
|
||||||
# we insert normal text
|
# we insert normal text
|
||||||
insert_tags_func(end_iter, text_before_special_text, *other_tags)
|
insert_tags_func(end_iter, text_before_special_text, *other_tags)
|
||||||
index = end # update index
|
index = end # update index
|
||||||
|
|
Loading…
Reference in New Issue