aboutsummaryrefslogtreecommitdiff
path: root/ide
diff options
context:
space:
mode:
authorHugo Herbelin2018-11-22 03:18:57 +0100
committerVincent Laporte2019-03-19 08:40:20 +0000
commit1e6dd0a21569f32a8046bb29400928ef3a6a1fa1 (patch)
tree99d42c585e3224cedf61695b28c96885173980cb /ide
parent0f91d7fbbaf790e84b30f60410ddae4cbbd9c3eb (diff)
CoqIDE: Ensure that contents of the pref window expands as much as possible.
This was not needed in gtk2 but is needed with gtk3.
Diffstat (limited to 'ide')
-rw-r--r--ide/configwin_ihm.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/ide/configwin_ihm.ml b/ide/configwin_ihm.ml
index 9fe3d8bb35..0f3fd38a7a 100644
--- a/ide/configwin_ihm.ml
+++ b/ide/configwin_ihm.ml
@@ -660,7 +660,7 @@ let edit ?(with_apply=true)
in
let config_box = new configuration_box conf_struct in
- let _ = dialog#vbox#add config_box#box#coerce in
+ let _ = dialog#vbox#pack ~expand:true config_box#box#coerce in
if with_apply then
dialog#add_button Configwin_messages.mApply `APPLY;