SF.net SVN: geany: [2185] trunk
eht16 at users.sourceforge.net
eht16 at xxxxx
Wed Jan 23 13:36:54 UTC 2008
Revision: 2185
http://geany.svn.sourceforge.net/geany/?rev=2185&view=rev
Author: eht16
Date: 2008-01-23 05:36:53 -0800 (Wed, 23 Jan 2008)
Log Message:
-----------
Fix wrong placement of descriptive texts in Templates and Tools tabs in the preferences dialog.
Modified Paths:
--------------
trunk/ChangeLog
trunk/src/prefs.c
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2008-01-23 13:35:08 UTC (rev 2184)
+++ trunk/ChangeLog 2008-01-23 13:36:53 UTC (rev 2185)
@@ -4,6 +4,8 @@
Move class and label structs to geanywraplabel.c.
Override widget functions instead of using event handlers
(trying to fix #1869399).
+ * src/prefs.c: Fix wrong placement of descriptive texts in Templates
+ and Tools tabs in the preferences dialog.
2008-01-22 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
Modified: trunk/src/prefs.c
===================================================================
--- trunk/src/prefs.c 2008-01-23 13:35:08 UTC (rev 2184)
+++ trunk/src/prefs.c 2008-01-23 13:36:53 UTC (rev 2185)
@@ -1342,12 +1342,12 @@
// page Tools
label = geany_wrap_label_new(_("Enter tool paths below. Tools you do not need can be left blank."));
gtk_widget_show(label);
- gtk_box_pack_start(GTK_BOX(lookup_widget(ui_widgets.prefs_dialog, "vbox31")),
+ gtk_box_pack_start(GTK_BOX(lookup_widget(ui_widgets.prefs_dialog, "vbox33")),
label, FALSE, TRUE, 5);
// page Templates
label = geany_wrap_label_new(_("Set the information to be used in templates. See the documentation for details."));
gtk_widget_show(label);
- gtk_box_pack_start(GTK_BOX(lookup_widget(ui_widgets.prefs_dialog, "vbox33")),
+ gtk_box_pack_start(GTK_BOX(lookup_widget(ui_widgets.prefs_dialog, "vbox31")),
label, FALSE, TRUE, 5);
label = geany_wrap_label_new(_("<i>Notice: For all changes you make here to take effect, you need to restart Geany.</i>"));
gtk_widget_show(label);
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