From 044ae60c8c0da7dc1a6b667b657d342aa770c42b Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sat, 2 Mar 2013 12:27:49 +0000 Subject: Offer non-stretching formats with video as well as still content (#69). --- src/wx/film_editor.cc | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/wx') diff --git a/src/wx/film_editor.cc b/src/wx/film_editor.cc index 362243ef3..24f6c2461 100644 --- a/src/wx/film_editor.cc +++ b/src/wx/film_editor.cc @@ -982,9 +982,7 @@ FilmEditor::setup_formats () vector fmt = Format::all (); for (vector::iterator i = fmt.begin(); i != fmt.end(); ++i) { - if (c == VIDEO && dynamic_cast (*i)) { - _formats.push_back (*i); - } else if (c == STILL && dynamic_cast (*i)) { + if (c == VIDEO || (c == STILL && dynamic_cast (*i))) { _formats.push_back (*i); } } -- cgit v1.2.3