diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-07-13 13:26:34 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-07-13 13:26:34 +0100 |
| commit | 1e99bbf5062904095e5fb304271247eb78324016 (patch) | |
| tree | dd01b813ff60309da1284366ae57b46f0fd2d957 /src | |
| parent | 5f67b54eec41882ff39096a1e14ee45a16c19c38 (diff) | |
Fix initial display of things.
Diffstat (limited to 'src')
| -rw-r--r-- | src/wx/film_editor.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/wx/film_editor.cc b/src/wx/film_editor.cc index 7e13261ae..7ef18165f 100644 --- a/src/wx/film_editor.cc +++ b/src/wx/film_editor.cc @@ -869,10 +869,10 @@ FilmEditor::set_film (shared_ptr<Film> f) if (!_film->content().empty ()) { set_selection (_film->content().front ()); - } else { - wxListEvent ev; - content_selection_changed (ev); } + + wxListEvent ev; + content_selection_changed (ev); } /** Updates the sensitivity of lots of widgets to a given value. |
