From 49d1a20d38ae065a63479424b45be47554710ee4 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Mon, 18 Aug 2014 16:30:52 +0100 Subject: Fix weird problem where content list is no longer selectable after selecting something in the timeline. --- src/wx/film_editor.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/wx/film_editor.cc b/src/wx/film_editor.cc index d0534f9c0..b341cb0fe 100644 --- a/src/wx/film_editor.cc +++ b/src/wx/film_editor.cc @@ -989,7 +989,7 @@ FilmEditor::set_selection (weak_ptr wc) if (content[i] == wc.lock ()) { _content->SetItemState (i, wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED); } else { - _content->SetItemState (i, 0, wxLIST_STATE_SELECTED | wxLIST_STATE_FOCUSED); + _content->SetItemState (i, 0, wxLIST_STATE_SELECTED); } } } -- cgit v1.2.3