diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-12-08 20:59:32 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-12-08 20:59:32 +0100 |
| commit | 5671b643ef0e935563bf4cc89efd640d592d1f86 (patch) | |
| tree | 847668d512a4e0a0b3af13503cae0b1836b8db24 /src/wx/kdm_timing_panel.cc | |
| parent | e06d1831abc6786933db935f298c8a4e8e76e599 (diff) | |
Assorted macOS layout tweaks.
Diffstat (limited to 'src/wx/kdm_timing_panel.cc')
| -rw-r--r-- | src/wx/kdm_timing_panel.cc | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/src/wx/kdm_timing_panel.cc b/src/wx/kdm_timing_panel.cc index ae31e36c3..998cd5a81 100644 --- a/src/wx/kdm_timing_panel.cc +++ b/src/wx/kdm_timing_panel.cc @@ -47,11 +47,16 @@ KDMTimingPanel::KDMTimingPanel (wxWindow* parent) #endif wxSizer* table = new wxBoxSizer (wxHORIZONTAL); - add_label_to_sizer (table, this, _("From"), true, 0, wxLEFT | wxRIGHT | wxALIGN_CENTRE_VERTICAL); + add_label_to_sizer (table, this, _("From"), false, 0, wxLEFT | wxRIGHT | wxALIGN_CENTRE_VERTICAL); wxDateTime from; from.SetToCurrent (); _from_date = new wxDatePickerCtrl (this, wxID_ANY, from, wxDefaultPosition, size); +#ifdef DCPOMATIC_OSX + /* Hack to tweak alignment, which I can't get right by "proper" means for some reason */ + table->Add (_from_date, 0, wxALIGN_CENTER_VERTICAL | wxBOTTOM, 4); +#else table->Add (_from_date, 0, wxALIGN_CENTER_VERTICAL); +#endif #ifdef __WXGTK3__ _from_time = new TimePickerText (this, from); @@ -59,19 +64,19 @@ KDMTimingPanel::KDMTimingPanel (wxWindow* parent) _from_time = new TimePickerSpin (this, from); #endif -#ifdef DCPOMATIC_OSX - /* Hack to tweak alignment, which I can't get right by "proper" means for some reason */ - table->Add (_from_time, 0, wxALIGN_CENTER_VERTICAL | wxTOP, 4); -#else table->Add (_from_time, 0, wxALIGN_CENTER_VERTICAL); -#endif - add_label_to_sizer (table, this, _("until"), true, 0, wxLEFT | wxRIGHT | wxALIGN_CENTRE_VERTICAL); + add_label_to_sizer (table, this, _("until"), false, 0, wxLEFT | wxRIGHT | wxALIGN_CENTRE_VERTICAL); wxDateTime to = from; /* 1 week from now */ to.Add (wxDateSpan (0, 0, 1, 0)); _until_date = new wxDatePickerCtrl (this, wxID_ANY, to, wxDefaultPosition, size); +#ifdef DCPOMATIC_OSX + /* Hack to tweak alignment, which I can't get right by "proper" means for some reason */ + table->Add (_until_date, 0, wxALIGN_CENTER_VERTICAL | wxBOTTOM, 4); +#else table->Add (_until_date, 0, wxALIGN_CENTER_VERTICAL); +#endif #ifdef __WXGTK3__ _until_time = new TimePickerText (this, to); @@ -79,13 +84,9 @@ KDMTimingPanel::KDMTimingPanel (wxWindow* parent) _until_time = new TimePickerSpin (this, to); #endif -#ifdef DCPOMATIC_OSX - table->Add (_until_time, 0, wxALIGN_CENTER_VERTICAL | wxTOP, 4); -#else table->Add (_until_time, 0, wxALIGN_CENTER_VERTICAL); -#endif - overall_sizer->Add (table); + overall_sizer->Add (table, 0, wxTOP, DCPOMATIC_SIZER_GAP); _warning = new StaticText (this, wxT("")); overall_sizer->Add (_warning, 0, wxTOP, DCPOMATIC_SIZER_GAP); |
