diff options
| -rw-r--r-- | ChangeLog | 3 | ||||
| -rw-r--r-- | src/wx/film_viewer.cc | 1 |
2 files changed, 4 insertions, 0 deletions
@@ -7,6 +7,9 @@ and add a note of how many J2K frames have already been encoded. + * Correctly set up crop in the viewer + on reloading a film. + 2012-09-18 Carl Hetherington <cth@carlh.net> * Fix non-working removal of encode servers. diff --git a/src/wx/film_viewer.cc b/src/wx/film_viewer.cc index 8398b8162..56f20449b 100644 --- a/src/wx/film_viewer.cc +++ b/src/wx/film_viewer.cc @@ -237,6 +237,7 @@ FilmViewer::set_film (Film* f) } _film->Changed.connect (sigc::mem_fun (*this, &FilmViewer::film_changed)); + film_changed (Film::CROP); film_changed (Film::THUMBS); _thumb_panel->refresh (); setup_visibility (); |
