SF.net SVN: geany-plugins:[1392] trunk/geany-plugins/geanysendmail/src/ geanysendmail.c

frlan at users.sourceforge.net frlan at xxxxx
Sun May 23 12:19:08 UTC 2010


Revision: 1392
          http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1392&view=rev
Author:   frlan
Date:     2010-05-23 12:19:08 +0000 (Sun, 23 May 2010)

Log Message:
-----------
GeanySendMail: Try to fix some optical issues after changing expanding behavior of plugins preferences dialog of Geany

Modified Paths:
--------------
    trunk/geany-plugins/geanysendmail/src/geanysendmail.c

Modified: trunk/geany-plugins/geanysendmail/src/geanysendmail.c
===================================================================
--- trunk/geany-plugins/geanysendmail/src/geanysendmail.c	2010-05-23 12:10:45 UTC (rev 1391)
+++ trunk/geany-plugins/geanysendmail/src/geanysendmail.c	2010-05-23 12:19:08 UTC (rev 1392)
@@ -364,11 +364,11 @@
 	gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(pref_widgets.checkbox_use_addressdialog), use_address_dialog);
 	gtk_widget_show(pref_widgets.checkbox_use_addressdialog);
 
-	gtk_container_add(GTK_CONTAINER(vbox), label1);
-	gtk_container_add(GTK_CONTAINER(vbox), pref_widgets.entry);
-	gtk_container_add(GTK_CONTAINER(vbox), label2);
-	gtk_box_pack_start(GTK_BOX(vbox), pref_widgets.checkbox_icon_to_toolbar, TRUE, FALSE, 2);
-	gtk_box_pack_start(GTK_BOX(vbox), pref_widgets.checkbox_use_addressdialog, TRUE, FALSE, 2);
+	gtk_box_pack_start(GTK_BOX(vbox), label1, FALSE, FALSE, 0);
+	gtk_box_pack_start(GTK_BOX(vbox), pref_widgets.entry, FALSE, FALSE, 0);
+	gtk_box_pack_start(GTK_BOX(vbox), label2, FALSE, FALSE, 0);
+	gtk_box_pack_start(GTK_BOX(vbox), pref_widgets.checkbox_icon_to_toolbar, FALSE, FALSE, 0);
+	gtk_box_pack_start(GTK_BOX(vbox), pref_widgets.checkbox_use_addressdialog, FALSE, FALSE, 0);
 
 	gtk_widget_show(vbox);
 


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



More information about the Plugins-Commits mailing list