hide XEP-184 tooltip when needed. Fixes #4855

This commit is contained in:
Yann Leboulanger 2009-03-01 16:59:06 +00:00
parent 8aa62e2658
commit be6fe24630
1 changed files with 4 additions and 0 deletions

View File

@ -635,6 +635,10 @@ class ConversationTextview:
# Check if we should hide the line tooltip # Check if we should hide the line tooltip
if not over_line: if not over_line:
self.line_tooltip.hide_tooltip() self.line_tooltip.hide_tooltip()
if self.xep0184_warning_tooltip.timeout != 0:
# Check if we should hide the XEP-184 warning tooltip
if not xep0184_warning:
self.xep0184_warning_tooltip.hide_tooltip()
if over_line and not self.line_tooltip.win: if over_line and not self.line_tooltip.win:
self.line_tooltip.timeout = gobject.timeout_add(500, self.line_tooltip.timeout = gobject.timeout_add(500,
self.show_line_tooltip) self.show_line_tooltip)