diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-12-29 00:53:59 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-12-29 00:56:29 +0100 |
| commit | d092b8f1a64bf051266558b426a37084b7eb6d36 (patch) | |
| tree | 40008752634fcf32d61347fa2f167efe245d27fd /src | |
| parent | 9c20eca7eca7d1285756acc7b14e8c3d52baaa79 (diff) | |
Trim some padding from the KDM creator.
Diffstat (limited to 'src')
| -rw-r--r-- | src/tools/dcpomatic_kdm.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tools/dcpomatic_kdm.cc b/src/tools/dcpomatic_kdm.cc index 8ac4b997a..1d22e0818 100644 --- a/src/tools/dcpomatic_kdm.cc +++ b/src/tools/dcpomatic_kdm.cc @@ -168,11 +168,11 @@ public: h->SetFont (subheading_font); right->Add (h); _timing = new KDMTimingPanel (overall_panel); - right->Add (_timing, 0, wxALL, DCPOMATIC_SIZER_Y_GAP); + right->Add (_timing, 0, wxTOP, DCPOMATIC_SIZER_Y_GAP); h = new StaticText (overall_panel, _("DKDM")); h->SetFont (subheading_font); - right->Add(h, 0, wxTOP, DCPOMATIC_SUBHEADING_TOP_PAD); + right->Add(h, 0); _dkdm_search = new wxSearchCtrl(overall_panel, wxID_ANY, wxEmptyString, wxDefaultPosition, wxSize(200, search_ctrl_height())); #ifndef __WXGTK3__ @@ -229,7 +229,7 @@ public: right->Add (_output, 0, wxALL, DCPOMATIC_SIZER_Y_GAP); _create = new Button (overall_panel, _("Create KDMs")); - right->Add (_create, 0, wxALL, DCPOMATIC_SIZER_GAP); + right->Add(_create, 0, wxTOP, DCPOMATIC_SIZER_GAP); main_sizer->Add (horizontal, 1, wxALL | wxEXPAND, DCPOMATIC_DIALOG_BORDER); overall_panel->SetSizer (main_sizer); |
