thanks membris who found one noturius pygtk bug
This commit is contained in:
parent
f7d4dc2580
commit
971f48abca
1 changed files with 2 additions and 1 deletions
|
@ -934,7 +934,8 @@ class Chat:
|
||||||
#we get the end of the tag
|
#we get the end of the tag
|
||||||
while not end_iter.ends_tag(texttag):
|
while not end_iter.ends_tag(texttag):
|
||||||
end_iter.forward_char()
|
end_iter.forward_char()
|
||||||
word = begin_iter.get_text(end_iter).decode('utf-8')
|
word = widget.get_buffer().get_text(begin_iter, end_iter).decode(
|
||||||
|
'utf-8')
|
||||||
if event.button == 3: # right click
|
if event.button == 3: # right click
|
||||||
self.make_link_menu(event, kind, word)
|
self.make_link_menu(event, kind, word)
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Add table
Reference in a new issue