summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/wx/content_properties_dialog.cc6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/wx/content_properties_dialog.cc b/src/wx/content_properties_dialog.cc
index 5df9ea5cf..8bb0a6b1f 100644
--- a/src/wx/content_properties_dialog.cc
+++ b/src/wx/content_properties_dialog.cc
@@ -51,6 +51,12 @@ ContentPropertiesDialog::ContentPropertiesDialog (wxWindow* parent, shared_ptr<C
maybe_add_group (grouped, wx_to_std (_("Length")));
layout ();
+
+ /* SetSizeHints() seems to get it slightly wrong (see #884),
+ so hack in a bit more height.
+ */
+ wxSize const s = GetMinSize ();
+ SetMinSize (wxSize (s.GetWidth(), s.GetHeight() + 32));
}
void