Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYann Leboulanger <asterix@lagaule.org>2013-07-21 22:37:05 +0400
committerYann Leboulanger <asterix@lagaule.org>2013-07-21 22:37:05 +0400
commitc952b6d754f9eb5d7560537b9e9ad03ef974ddc8 (patch)
treebf36287bead38ea40e437b841844fe82ff208275 /src/conversation_textview.py
parent5f4fc5463bd09acb85e949912a6acb88d1cea618 (diff)
fix placing corrected message when it contains special text. Fixes #7372
Diffstat (limited to 'src/conversation_textview.py')
-rw-r--r--src/conversation_textview.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/conversation_textview.py b/src/conversation_textview.py
index e97d5801e..172c022f6 100644
--- a/src/conversation_textview.py
+++ b/src/conversation_textview.py
@@ -1095,7 +1095,6 @@ class ConversationTextview(GObject.GObject):
special_text = otext[start:end]
if start > index:
text_before_special_text = otext[index:start]
- end_iter = buffer_.get_end_iter()
# we insert normal text
if other_tags:
insert_tags_func(end_iter, text_before_special_text, *other_tags)