diff options
author | René Stadler <mail@renestadler.de> | 2008-02-04 17:36:57 +0200 |
---|---|---|
committer | René Stadler <mail@renestadler.de> | 2008-02-04 17:36:57 +0200 |
commit | c5d81988982b12a7375cb987525b65398894501e (patch) | |
tree | 91ee1d83255978a60914dc9456a5c4c35cca6c4e /GstDebugViewer | |
parent | 46773f345813bc7643ebdb461d19a35d478496cc (diff) |
Fix bottom view showing the wrong selected log line
Diffstat (limited to 'GstDebugViewer')
-rw-r--r-- | GstDebugViewer/GUI.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/GstDebugViewer/GUI.py b/GstDebugViewer/GUI.py index d665e53..89468e4 100644 --- a/GstDebugViewer/GUI.py +++ b/GstDebugViewer/GUI.py @@ -1530,7 +1530,7 @@ class LineView (object): return path = model.get_path (tree_iter) - line_index = model.line_index_to_super (path[0]) + line_index = model.line_index_to_top (path[0]) if len (line_model) == 0: line_model.insert_line (0, line_index) |