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

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@2510 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
Enrico Tröger 2008-04-20 11:51:28 +00:00
parent 5148d9986e
commit f28829a653
3 changed files with 5 additions and 2 deletions

View File

@ -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>

View File

@ -4887,7 +4887,7 @@ Bottom
<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>

View File

@ -3363,7 +3363,7 @@ create_prefs_dialog (void)
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"));