summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/wx/config_dialog.cc5
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