summaryrefslogtreecommitdiff
path: root/GstDebugViewer
diff options
context:
space:
mode:
authorRené Stadler <mail@renestadler.de>2007-12-04 14:40:41 +0200
committerRené Stadler <mail@renestadler.de>2007-12-04 14:40:41 +0200
commitadf1a9442cd5754381f7c7824dffb2adced2a966 (patch)
tree5bdb14e51b3f2980abcc3d1235907f2c75bd0fd3 /GstDebugViewer
parent42d5943f65645491cf317dbfa306788120874193 (diff)
Fix crash when adding a line to bottom view with log filter turned on
Diffstat (limited to 'GstDebugViewer')
-rwxr-xr-xGstDebugViewer/GUI.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/GstDebugViewer/GUI.py b/GstDebugViewer/GUI.py
index 95c5864..269a76d 100755
--- a/GstDebugViewer/GUI.py
+++ b/GstDebugViewer/GUI.py
@@ -1234,7 +1234,7 @@ class LineView (object):
if len (line_model):
timestamps = [row[line_model.COL_TIME] for row in line_model]
- row = log_filter[(super_line_index,)]
+ row = log_filter[(line_index,)]
from bisect import bisect_right
position = bisect_right (timestamps, row[line_model.COL_TIME])
else: