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:
parent
5148d9986e
commit
f28829a653
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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"));
|
||||
|
Loading…
x
Reference in New Issue
Block a user