summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2013-12-27 15:36:11 +0000
committerCarl Hetherington <cth@carlh.net>2013-12-27 15:36:11 +0000
commit31901d96cd6ba699e8f06b43057786ec405613a3 (patch)
tree2694737d1dc361e63722456b19861686e97b69d8 /src
parenta2107a86ee1e5170ab77a04e524bbb5dd94b20c5 (diff)
Remove erroneous float passed as int parameter.
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 564b90d28..e478734c7 100644
--- a/src/wx/film_editor.cc
+++ b/src/wx/film_editor.cc
@@ -284,7 +284,7 @@ FilmEditor::make_content_panel ()
s->Add (b, 0, wxALL, 4);
- _content_sizer->Add (s, 0.75, wxEXPAND | wxALL, 6);
+ _content_sizer->Add (s, 1, wxEXPAND | wxALL, 6);
}
_sequence_video = new wxCheckBox (_content_panel, wxID_ANY, _("Keep video in sequence"));