fix TB when scrolling is too long

This commit is contained in:
Yann Leboulanger 2007-09-04 21:36:35 +00:00
parent e5c3b78674
commit e556c1084d
1 changed files with 3 additions and 0 deletions

View File

@ -205,6 +205,9 @@ class ConversationTextview:
return True
def smooth_scroll_timeout(self):
if not self.smooth_id:
# we finished scrolling
return
gobject.source_remove(self.smooth_id)
self.smooth_id = None
parent = self.tv.get_parent()