SF.net SVN: geany:[4388] trunk

ntrel at users.sourceforge.net ntrel at xxxxx
Thu Oct 29 11:31:49 UTC 2009


Revision: 4388
          http://geany.svn.sourceforge.net/geany/?rev=4388&view=rev
Author:   ntrel
Date:     2009-10-29 11:31:48 +0000 (Thu, 29 Oct 2009)

Log Message:
-----------
Don't expand Plugin Preferences page spacing vertically to fill the
height of the dialog.

Modified Paths:
--------------
    trunk/ChangeLog
    trunk/src/pluginutils.c

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2009-10-28 18:07:49 UTC (rev 4387)
+++ trunk/ChangeLog	2009-10-29 11:31:48 UTC (rev 4388)
@@ -1,3 +1,10 @@
+2009-10-29  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
+
+ * src/pluginutils.c:
+   Don't expand Plugin Preferences page spacing vertically to fill the
+   height of the dialog.
+
+
 2009-10-28  Nick Treleaven  <nick(dot)treleaven(at)btinternet(dot)com>
 
  * src/ui_utils.c:

Modified: trunk/src/pluginutils.c
===================================================================
--- trunk/src/pluginutils.c	2009-10-28 18:07:49 UTC (rev 4387)
+++ trunk/src/pluginutils.c	2009-10-29 11:31:48 UTC (rev 4388)
@@ -176,7 +176,8 @@
 
 			gtk_alignment_set_padding(GTK_ALIGNMENT(align), 6, 6, 6, 6);
 			gtk_container_add(GTK_CONTAINER(align), page);
-			page = align;
+			page = gtk_vbox_new(FALSE, 0);
+			gtk_box_pack_start(GTK_BOX(page), align, FALSE, FALSE, 0);
 		}
 	}
 	else if (p->configure_single)


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.



More information about the Commits mailing list