Kaydet (Commit) ea924f65 authored tarafından Enrico Tröger's avatar Enrico Tröger

Expand child widgets in the Plugin Preferences dialog (patch by Colomban Wendling, thanks).

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@4950 ea778897-0a13-0410-b9d1-a72fbfd435f5
üst 15d67052
......@@ -9,6 +9,9 @@
* src/msgwindow.c:
Fix duplicate accelerators for Clear and Copy in the
Messages Window popup menu.
* src/pluginutils.c:
Expand child widgets in the Plugin Preferences dialog
(patch by Colomban Wendling, thanks).
2010-05-22 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
......
......@@ -177,7 +177,7 @@ static GtkWidget *create_pref_page(Plugin *p, GtkWidget *dialog)
gtk_alignment_set_padding(GTK_ALIGNMENT(align), 6, 6, 6, 6);
gtk_container_add(GTK_CONTAINER(align), page);
page = gtk_vbox_new(FALSE, 0);
gtk_box_pack_start(GTK_BOX(page), align, FALSE, FALSE, 0);
gtk_box_pack_start(GTK_BOX(page), align, TRUE, TRUE, 0);
}
}
else if (p->configure_single)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment