From ec408a078e703f216868d5ccbfc4b78b6778acb2 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Mon, 31 Mar 2014 16:36:13 +0100 Subject: Hacky fix for too-small configuration dialog on Linux. --- src/wx/config_dialog.cc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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 -- cgit v1.2.3