diff options
Diffstat (limited to 'GstDebugViewer')
-rw-r--r-- | GstDebugViewer/Plugins/Timeline.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/GstDebugViewer/Plugins/Timeline.py b/GstDebugViewer/Plugins/Timeline.py index af5a9b5..a87a99a 100644 --- a/GstDebugViewer/Plugins/Timeline.py +++ b/GstDebugViewer/Plugins/Timeline.py @@ -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 |