[Xfce4-commits] [apps/xfce4-terminal] 01/01: Fix Set Title dialog tooltips
noreply at xfce.org
noreply at xfce.org
Thu Jul 6 00:58:59 CEST 2017
This is an automated email from the git hooks/post-receive script.
f 2 4 0 4 p u s h e d a c o m m i t t o b r a n c h m a s t e r
in repository apps/xfce4-terminal.
commit a99dd24412e10b1f12064d92532c57901f29434a
Author: Igor <f2404 at yandex.ru>
Date: Wed Jul 5 18:58:51 2017 -0400
Fix Set Title dialog tooltips
---
terminal/terminal-window.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/terminal/terminal-window.c b/terminal/terminal-window.c
index 41c8d44..eb59a10 100644
--- a/terminal/terminal-window.c
+++ b/terminal/terminal-window.c
@@ -1954,13 +1954,13 @@ terminal_window_action_set_title (GtkAction *action,
button = gtk_button_new_from_icon_name ("help-browser", GTK_ICON_SIZE_BUTTON);
gtk_button_set_relief (GTK_BUTTON (button), GTK_RELIEF_NONE);
- gtk_widget_set_tooltip_text (button, _("_Help"));
+ gtk_widget_set_tooltip_text (button, _("Help"));
g_signal_connect (G_OBJECT (button), "clicked", G_CALLBACK (title_popover_help), window);
gtk_box_pack_start (GTK_BOX (box), button, TRUE, TRUE, 0);
button = gtk_button_new_from_icon_name ("window-close-symbolic", GTK_ICON_SIZE_BUTTON);
gtk_button_set_relief (GTK_BUTTON (button), GTK_RELIEF_NONE);
- gtk_widget_set_tooltip_text (button, _("_Close"));
+ gtk_widget_set_tooltip_text (button, _("Close"));
g_signal_connect (G_OBJECT (button), "clicked", G_CALLBACK (title_popover_close), window);
gtk_box_pack_start (GTK_BOX (box), button, TRUE, TRUE, 0);
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Xfce4-commits
mailing list