summaryrefslogtreecommitdiff
path: root/GstDebugViewer
diff options
context:
space:
mode:
authorRené Stadler <mail@renestadler.de>2008-01-25 15:44:38 +0200
committerRené Stadler <mail@renestadler.de>2008-01-25 15:44:38 +0200
commitf55099b212fd51749f81b6b478cdce5b70043424 (patch)
treed7fa382bad7203554630be290c9eac14d32cfa9e /GstDebugViewer
parent2beec37c00cad56140b2dc7e270adc6930bce976 (diff)
Fix bottom view not showing current line until you add something there
Diffstat (limited to 'GstDebugViewer')
-rw-r--r--GstDebugViewer/GUI.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/GstDebugViewer/GUI.py b/GstDebugViewer/GUI.py
index 30800b3..6a27b65 100644
--- a/GstDebugViewer/GUI.py
+++ b/GstDebugViewer/GUI.py
@@ -1519,7 +1519,7 @@ class LineView (object):
def handle_log_view_selection_changed (self, selection):
line_model = self.line_view.props.model
- if line_model is None or len (line_model) == 0:
+ if line_model is None:
return
model, tree_iter = selection.get_selected ()