summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2012-07-24 20:57:08 +0100
committerCarl Hetherington <cth@carlh.net>2012-07-24 20:57:08 +0100
commit6da7c13749fe413f94ecdefe801b1d0a009c4cf5 (patch)
tree92f521c4335b8308be3889a624d1bd20252a2ad7 /src
parent7a8f7e87d631adec94b6b2e61e524ee9424e8284 (diff)
Fix visibility of DCP range and A/B buttons.
Diffstat (limited to 'src')
-rw-r--r--src/gtk/film_editor.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gtk/film_editor.cc b/src/gtk/film_editor.cc
index e09d8c2cf..d46244082 100644
--- a/src/gtk/film_editor.cc
+++ b/src/gtk/film_editor.cc
@@ -186,10 +186,13 @@ FilmEditor::FilmEditor (Film* f)
t->attach (video_widget (left_aligned_label ("Range")), 0, 1, n, n + 1);
Gtk::HBox* db = manage (new Gtk::HBox);
db->pack_start (_dcp_range, true, true);
+ video_widget (_dcp_range);
db->pack_start (_change_dcp_range_button, false, false);
+ video_widget (_change_dcp_range_button);
t->attach (*db, 1, 2, n, n + 1);
++n;
t->attach (_dcp_ab, 0, 3, n, n + 1);
+ video_widget (_dcp_ab);
/* STILL-only stuff */
n = special;