diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-11-04 19:10:35 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-11-04 19:10:35 +0000 |
| commit | c2e6b0eb38bae3e767179734274c51a856467580 (patch) | |
| tree | 92b02226fef5a7fd1399a5227788ee1054c80ad0 /src/wx/kdm_timing_panel.cc | |
| parent | b8d61287e74a7bec2c812a2e28fa17ba1582ec86 (diff) | |
Shrink height of KDM creator a bit.
Diffstat (limited to 'src/wx/kdm_timing_panel.cc')
| -rw-r--r-- | src/wx/kdm_timing_panel.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wx/kdm_timing_panel.cc b/src/wx/kdm_timing_panel.cc index 02b4a9426..c0d0c27e8 100644 --- a/src/wx/kdm_timing_panel.cc +++ b/src/wx/kdm_timing_panel.cc @@ -25,7 +25,7 @@ KDMTimingPanel::KDMTimingPanel (wxWindow* parent) : wxPanel (parent, wxID_ANY) { - wxFlexGridSizer* table = new wxFlexGridSizer (3, DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP); + wxFlexGridSizer* table = new wxFlexGridSizer (6, DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP); add_label_to_sizer (table, this, _("From"), true); wxDateTime from; from.SetToCurrent (); @@ -34,7 +34,7 @@ KDMTimingPanel::KDMTimingPanel (wxWindow* parent) _from_time = new wxTimePickerCtrl (this, wxID_ANY, from); table->Add (_from_time, 1, wxEXPAND); - add_label_to_sizer (table, this, _("Until"), true); + add_label_to_sizer (table, this, _("until"), true); wxDateTime to = from; /* 1 week from now */ to.Add (wxDateSpan (0, 0, 1, 0)); |
