diff options
author | Stefan Kost <ensonic@users.sf.net> | 2010-06-30 16:16:45 +0300 |
---|---|---|
committer | René Stadler <mail@renestadler.de> | 2011-11-05 22:49:48 +0100 |
commit | c79915cb1ba7e30ac3f19c40dedb9b226d04acf8 (patch) | |
tree | 441499ae6597d30648dd812955dfc24c72b9bb85 /GstDebugViewer | |
parent | aa99e7c4a6d06d4e76ff4e29b6fecc9a28664dab (diff) |
timeline: add tooltip to histogram as well
Diffstat (limited to 'GstDebugViewer')
-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 () |