diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-01-25 00:43:17 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-01-25 00:43:30 +0100 |
| commit | 9c4bdd6a639c3b685423e19ef12e7f4a53d139b0 (patch) | |
| tree | 7d4627e72a6e1906d2627345cbc11ab8d73d200d | |
| parent | 7e25a483ecd14ae5de2e60b7e67a5e0aa4298fc2 (diff) | |
Fix consistency of button stack gaps.
| -rw-r--r-- | src/wx/screens_panel.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wx/screens_panel.cc b/src/wx/screens_panel.cc index 7f1d58de4..43657e12b 100644 --- a/src/wx/screens_panel.cc +++ b/src/wx/screens_panel.cc @@ -99,9 +99,9 @@ ScreensPanel::ScreensPanel (wxWindow* parent) auto check_buttons = new wxBoxSizer (wxVERTICAL); _check_all = new Button (this, _("Check all")); - check_buttons->Add (_check_all, 1, wxEXPAND | wxBOTTOM, DCPOMATIC_BUTTON_STACK_GAP); + check_buttons->Add(_check_all, 1, wxEXPAND | wxBOTTOM | wxTOP, DCPOMATIC_BUTTON_STACK_GAP); _uncheck_all = new Button (this, _("Uncheck all")); - check_buttons->Add (_uncheck_all, 1, wxEXPAND | wxBOTTOM, DCPOMATIC_BUTTON_STACK_GAP); + check_buttons->Add(_uncheck_all, 1, wxEXPAND | wxBOTTOM | wxTOP, DCPOMATIC_BUTTON_STACK_GAP); side_buttons->Add (check_buttons, 1, wxEXPAND | wxTOP, DCPOMATIC_BUTTON_STACK_GAP * 8); |
