summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-08-18 16:30:52 +0100
committerCarl Hetherington <cth@carlh.net>2014-08-18 16:30:52 +0100
commit49d1a20d38ae065a63479424b45be47554710ee4 (patch)
tree7ccd376d6d9969f1606fdb3b22b171313c16112d /src
parent888eedd469b461cd51a384518e075dbee9f6834f (diff)
Fix weird problem where content list is no longer selectable after selecting something in the timeline.
Diffstat (limited to 'src')
-rw-r--r--src/wx/film_editor.cc2
1 files changed, 1 insertions, 1 deletions
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<Content> 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);
}
}
}