summaryrefslogtreecommitdiff
path: root/src/wx/dcp_panel.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-09-06 00:09:51 +0200
committerCarl Hetherington <cth@carlh.net>2025-09-06 00:09:51 +0200
commit4cff4f2cb09685d8e5d4a0fafe43089bca9441d1 (patch)
tree392fc4a9386b8119f1dc0b9d1d747ac14cb637f6 /src/wx/dcp_panel.cc
parent78cc2db4d8899ae22ccc96db5012b33a00d394fc (diff)
Cleanup: assume DCPOMATIC_SPIN_CTRL_WIDTH.
Diffstat (limited to 'src/wx/dcp_panel.cc')
-rw-r--r--src/wx/dcp_panel.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wx/dcp_panel.cc b/src/wx/dcp_panel.cc
index 7582ba0fa..80caa4c2c 100644
--- a/src/wx/dcp_panel.cc
+++ b/src/wx/dcp_panel.cc
@@ -820,13 +820,13 @@ DCPPanel::make_video_panel()
_frame_rate_label = create_label(panel, _("Frame Rate"), true);
_frame_rate_choice = new Choice(panel);
- _frame_rate_spin = new SpinCtrl(panel, DCPOMATIC_SPIN_CTRL_WIDTH);
+ _frame_rate_spin = new SpinCtrl(panel);
_best_frame_rate = new Button(panel, _("Use best"));
_three_d = new CheckBox(panel, _("3D"));
_video_bit_rate_label = create_label(panel, _("Video bit rate\nfor newly-encoded data"), true);
- _video_bit_rate = new SpinCtrl(panel, DCPOMATIC_SPIN_CTRL_WIDTH);
+ _video_bit_rate = new SpinCtrl(panel);
_mbits_label = create_label(panel, _("Mbit/s"), false);
_reencode_j2k = new CheckBox(panel, _("Re-encode JPEG2000 data from input"));