mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +00:00
Fix bottom view not showing current line until you add something there
This commit is contained in:
parent
43badaea0c
commit
e75b817b72
1 changed files with 1 additions and 1 deletions
|
@ -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 ()
|
||||
|
|
Loading…
Reference in a new issue