mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
timeline: disable tooltip while scrolling
This commit is contained in:
parent
44d94c72e0
commit
658690c296
1 changed files with 2 additions and 0 deletions
|
@ -819,6 +819,7 @@ class TimelineWidget (gtk.DrawingArea):
|
|||
|
||||
if not self.has_grab ():
|
||||
self.grab_add ()
|
||||
self.props.has_tooltip = False
|
||||
|
||||
pos = int (event.x)
|
||||
self.emit ("change-position", pos)
|
||||
|
@ -831,6 +832,7 @@ class TimelineWidget (gtk.DrawingArea):
|
|||
|
||||
if self.has_grab ():
|
||||
self.grab_remove ()
|
||||
self.props.has_tooltip = True
|
||||
|
||||
return True
|
||||
|
||||
|
|
Loading…
Reference in a new issue