summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2014-05-04 11:10:23 -0400
committerMatthias Clasen <mclasen@redhat.com>2014-05-10 22:04:14 -0400
commite43aeb9a1f671f3f9e1ce4090f19ff08cae500d0 (patch)
treeb724d7fd7dd208b16d38a13eeb2116a3451e91a3 /modules
parent5fcd6ba21beda6d2b4931d10d8ea8f0eb3d4744d (diff)
downloadgtk+-e43aeb9a1f671f3f9e1ce4090f19ff08cae500d0.tar.gz
parasite: Allow panes to shrink
The notebook is too wide.
Diffstat (limited to 'modules')
-rw-r--r--modules/other/parasite/window.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/other/parasite/window.c b/modules/other/parasite/window.c
index 8edcc4ba1d..9bf3f348d4 100644
--- a/modules/other/parasite/window.c
+++ b/modules/other/parasite/window.c
@@ -273,7 +273,7 @@ gtkparasite_window_create()
gtk_container_add (GTK_CONTAINER (box), hpaned);
vpaned = gtk_paned_new (GTK_ORIENTATION_VERTICAL);
- gtk_paned_pack1 (GTK_PANED (hpaned), vpaned, TRUE, FALSE);
+ gtk_paned_pack1 (GTK_PANED (hpaned), vpaned, TRUE, TRUE);
gtk_paned_pack1 (GTK_PANED (vpaned), create_widget_list_pane (window), TRUE, FALSE);
nb = g_object_new (GTK_TYPE_NOTEBOOK,
@@ -303,7 +303,7 @@ gtkparasite_window_create()
window->widget_css_editor,
gtk_label_new ("Custom CSS"));
- gtk_paned_pack2 (GTK_PANED (hpaned), nb, FALSE, FALSE);
+ gtk_paned_pack2 (GTK_PANED (hpaned), nb, TRUE, TRUE);
if (parasite_python_is_enabled())
{