From 44303a412ebc46e6d32a78456518d165505ea6a4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ren=C3=A9=20Stadler?= Date: Tue, 4 Dec 2007 14:44:34 +0200 Subject: [PATCH] Fix adding rows to the bottom view --- debug-viewer/GstDebugViewer/GUI.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debug-viewer/GstDebugViewer/GUI.py b/debug-viewer/GstDebugViewer/GUI.py index 269a76d..64bbd13 100755 --- a/debug-viewer/GstDebugViewer/GUI.py +++ b/debug-viewer/GstDebugViewer/GUI.py @@ -1243,7 +1243,7 @@ class LineView (object): other_index = line_model.line_index_to_super (position - 1) else: other_index = -1 - if other_index == super_line_index: + if other_index == super_line_index and position != 1: # Already have the line. pass else: -- 2.7.4