mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-28 04:31:06 +00:00
timeline: add tooltip to histogram as well
This commit is contained in:
parent
aa9db8ef8e
commit
5fae4aa235
1 changed files with 7 additions and 0 deletions
|
@ -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 ()
|
||||
|
|
Loading…
Reference in a new issue