diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-12-07 22:28:02 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-01-18 22:37:07 +0100 |
| commit | bfcfda264d12e42facce6f59e7cada9574ca7f2e (patch) | |
| tree | 76360d9ee5233303a393eeb52fc47f9902821a6c | |
| parent | d640b78d257c4a2436c752376cd2a2066e01cd8d (diff) | |
Use less vertical height for the logging checkboxes.
| -rw-r--r-- | src/wx/full_config_dialog.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/full_config_dialog.cc b/src/wx/full_config_dialog.cc index d3ca1c994..eba81507c 100644 --- a/src/wx/full_config_dialog.cc +++ b/src/wx/full_config_dialog.cc @@ -1425,7 +1425,7 @@ private: { add_top_aligned_label_to_sizer (table, _panel, _("Log")); - auto t = new wxBoxSizer (wxVERTICAL); + auto t = new wxFlexGridSizer (2); _log_general = new CheckBox (_panel, _("General")); t->Add (_log_general, 1, wxEXPAND | wxALL); _log_warning = new CheckBox (_panel, _("Warnings")); |
