summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2012-11-16 00:35:42 +0000
committerCarl Hetherington <cth@carlh.net>2012-11-16 00:35:42 +0000
commit14b35296119dcc53ac554962438dd9b5d0ae41c0 (patch)
tree5535846f62682a5a2c0849210398217781c02af8 /src
parent522677ba3b0c83f970d3e979f5bc44021c4b43a1 (diff)
Fix typo preventing video format being set properly.
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 492a267d7..6602435c4 100644
--- a/src/wx/film_editor.cc
+++ b/src/wx/film_editor.cc
@@ -498,7 +498,7 @@ FilmEditor::film_changed (Film::Property p)
++i;
++n;
}
- if (i != _formats.end()) {
+ if (i == _formats.end()) {
checked_set (_format, -1);
} else {
checked_set (_format, n);