diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-06-22 16:51:42 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-06-22 16:51:42 +0100 |
| commit | 4e095df78051cfff5a7eeaad5e2340fae7eb3665 (patch) | |
| tree | 1b279e5e05b9152754afcd13b51a9fd433581c2b /src | |
| parent | d557ec94ba0cbbd83fc43c72f27301ae9e644a23 (diff) | |
Add MBit/s label to JPEG2000 bandwidth configuration.
Diffstat (limited to 'src')
| -rw-r--r-- | src/wx/config_dialog.cc | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/src/wx/config_dialog.cc b/src/wx/config_dialog.cc index 1a9585b08..19ab877c2 100644 --- a/src/wx/config_dialog.cc +++ b/src/wx/config_dialog.cc @@ -744,10 +744,15 @@ public: wxFlexGridSizer* table = new wxFlexGridSizer (2, DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP); table->AddGrowableCol (1, 1); s->Add (table, 1, wxALL | wxEXPAND, _border); - - add_label_to_sizer (table, panel, _("Maximum JPEG2000 bandwidth"), true); - _maximum_j2k_bandwidth = new wxSpinCtrl (panel); - table->Add (_maximum_j2k_bandwidth, 1); + + { + add_label_to_sizer (table, panel, _("Maximum JPEG2000 bandwidth"), true); + wxBoxSizer* s = new wxBoxSizer (wxHORIZONTAL); + _maximum_j2k_bandwidth = new wxSpinCtrl (panel); + s->Add (_maximum_j2k_bandwidth, 1); + add_label_to_sizer (s, panel, _("Mbit/s"), false); + table->Add (s, 1); + } _allow_any_dcp_frame_rate = new wxCheckBox (panel, wxID_ANY, _("Allow any DCP frame rate")); table->Add (_allow_any_dcp_frame_rate, 1, wxEXPAND | wxALL); |
