diff options
Diffstat (limited to 'GstDebugViewer/Plugins/Timeline.py')
-rw-r--r-- | GstDebugViewer/Plugins/Timeline.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/GstDebugViewer/Plugins/Timeline.py b/GstDebugViewer/Plugins/Timeline.py index 8cc7448..b05cddc 100644 --- a/GstDebugViewer/Plugins/Timeline.py +++ b/GstDebugViewer/Plugins/Timeline.py @@ -430,6 +430,13 @@ class TimelineWidget (gtk.DrawingArea): self.__position_ts_range = None + try: + self.set_tooltip_text (_("Log event histogram\n" + "Different colors represent different log-levels")) + except AttributeError: + # Compatibility. + pass + def __handle_sentinel_progress (self, sentinel): self.__redraw () |