diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-03-31 16:36:13 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-03-31 16:36:13 +0100 |
| commit | ec408a078e703f216868d5ccbfc4b78b6778acb2 (patch) | |
| tree | 70f2650d4e8b38266ff6d95a689430eea83511e2 /src | |
| parent | dc0667cab0bc4e578662c9a64777229ad985b396 (diff) | |
Hacky fix for too-small configuration dialog on Linux.
Diffstat (limited to 'src')
| -rw-r--r-- | src/wx/config_dialog.cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/wx/config_dialog.cc b/src/wx/config_dialog.cc index baf455c3b..e7133a534 100644 --- a/src/wx/config_dialog.cc +++ b/src/wx/config_dialog.cc @@ -743,7 +743,10 @@ create_config_dialog () wxSize ps = wxSize (480, -1); int const border = 16; #else - wxSize ps = wxDefaultSize; + /* We seem to need to specify height here, otherwise the general panel + is too short (at least on Linux). + */ + wxSize ps = wxSize (-1, 400); int const border = 8; #endif |
