SF.net SVN: geany: [2510] trunk

eht16 at users.sourceforge.net eht16 at xxxxx
Sun Apr 20 11:51:29 UTC 2008


Revision: 2510
          http://geany.svn.sourceforge.net/geany/?rev=2510&view=rev
Author:   eht16
Date:     2008-04-20 04:51:28 -0700 (Sun, 20 Apr 2008)

Log Message:
-----------
Fix wrong tooltip for "Show Increase and Decrease Indentation buttons" in the preferences dialog.

Modified Paths:
--------------
    trunk/ChangeLog
    trunk/geany.glade
    trunk/src/interface.c

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2008-04-20 11:43:07 UTC (rev 2509)
+++ trunk/ChangeLog	2008-04-20 11:51:28 UTC (rev 2510)
@@ -4,6 +4,9 @@
    Don't chmod created run script when using the Run command and
    execute the script with /bin/sh on Unix-like systems to be able
    to run files on FAT filesystems.
+ * geany.glade, src/interface.c:
+   Fix wrong tooltip for "Show Increase and Decrease Indentation
+   buttons" in the preferences dialog.
 
 
 2008-04-19  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>

Modified: trunk/geany.glade
===================================================================
--- trunk/geany.glade	2008-04-20 11:43:07 UTC (rev 2509)
+++ trunk/geany.glade	2008-04-20 11:51:28 UTC (rev 2510)
@@ -4887,7 +4887,7 @@
 			  <child>
 			    <widget class="GtkCheckButton" id="check_toolbar_indent">
 			      <property name="visible">True</property>
-			      <property name="tooltip" translatable="yes">Display the Zoom In and Zoom Out buttons in the toolbar</property>
+			      <property name="tooltip" translatable="yes">Display the Increase and Decrease Indentation buttons in the toolbar</property>
 			      <property name="label" translatable="yes">Show Increase and Decrease Indentation buttons</property>
 			      <property name="use_underline">True</property>
 			      <property name="relief">GTK_RELIEF_NORMAL</property>

Modified: trunk/src/interface.c
===================================================================
--- trunk/src/interface.c	2008-04-20 11:43:07 UTC (rev 2509)
+++ trunk/src/interface.c	2008-04-20 11:51:28 UTC (rev 2510)
@@ -3363,7 +3363,7 @@
   gtk_widget_show (check_toolbar_indent);
   gtk_box_pack_start (GTK_BOX (vbox16), check_toolbar_indent, FALSE, FALSE, 0);
   GTK_WIDGET_UNSET_FLAGS (check_toolbar_indent, GTK_CAN_FOCUS);
-  gtk_tooltips_set_tip (tooltips, check_toolbar_indent, _("Display the Zoom In and Zoom Out buttons in the toolbar"), NULL);
+  gtk_tooltips_set_tip (tooltips, check_toolbar_indent, _("Display the Increase and Decrease Indentation buttons in the toolbar"), NULL);
   gtk_button_set_focus_on_click (GTK_BUTTON (check_toolbar_indent), FALSE);
 
   check_toolbar_search = gtk_check_button_new_with_mnemonic (_("Show Search field"));


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