From f28829a653da50d19d9dfbc3aa893b21e66b4205 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Enrico=20Tr=C3=B6ger?= Date: Sun, 20 Apr 2008 11:51:28 +0000 Subject: [PATCH] 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 --- ChangeLog | 3 +++ geany.glade | 2 +- src/interface.c | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 2b8e5465..be7bb471 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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 diff --git a/geany.glade b/geany.glade index 9a26afb8..3857639c 100644 --- a/geany.glade +++ b/geany.glade @@ -4887,7 +4887,7 @@ Bottom True - Display the Zoom In and Zoom Out buttons in the toolbar + Display the Increase and Decrease Indentation buttons in the toolbar Show Increase and Decrease Indentation buttons True GTK_RELIEF_NORMAL diff --git a/src/interface.c b/src/interface.c index 80d54c15..86443bad 100644 --- a/src/interface.c +++ b/src/interface.c @@ -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"));