diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-09-06 00:09:51 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-09-06 00:09:51 +0200 |
| commit | 4cff4f2cb09685d8e5d4a0fafe43089bca9441d1 (patch) | |
| tree | 392fc4a9386b8119f1dc0b9d1d747ac14cb637f6 /src/tools | |
| parent | 78cc2db4d8899ae22ccc96db5012b33a00d394fc (diff) | |
Cleanup: assume DCPOMATIC_SPIN_CTRL_WIDTH.
Diffstat (limited to 'src/tools')
| -rw-r--r-- | src/tools/dcpomatic_editor.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/dcpomatic_editor.cc b/src/tools/dcpomatic_editor.cc index 1cb79681d..3b19bd5b6 100644 --- a/src/tools/dcpomatic_editor.cc +++ b/src/tools/dcpomatic_editor.cc @@ -87,12 +87,12 @@ public: ++r; add_label_to_sizer(sizer, this, _("Entry point"), true, wxGBPosition(r, 0)); - _entry_point = new SpinCtrl(this, DCPOMATIC_SPIN_CTRL_WIDTH); + _entry_point = new SpinCtrl(this); sizer->Add(_entry_point, wxGBPosition(r, 1), wxDefaultSpan); ++r; add_label_to_sizer(sizer, this, _("Duration"), true, wxGBPosition(r, 0)); - _duration = new SpinCtrl(this, DCPOMATIC_SPIN_CTRL_WIDTH); + _duration = new SpinCtrl(this); sizer->Add(_duration, wxGBPosition(r, 1), wxDefaultSpan); ++r; |
