This is an automated email from the git hooks/post-receive script.

ochosi pushed a 
commit to branch 
master
in repository xfce/xfce4-settings.

commit e98086890f1f72b6b4d43e8e25251b58791f026d
Author: Simon Steinbeiss <simon.steinbe...@elfenbeinturm.at>
Date:   Mon Jul 16 22:02:31 2018 +0200

    settings manager: Add default mnemonics back
    
    While mnemonics were handled in Gtk+2 with the use of GtkStock elements
    they have to be added in Gtk+3 by hand.
---
 xfce4-settings-manager/xfce-settings-manager-dialog.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/xfce4-settings-manager/xfce-settings-manager-dialog.c 
b/xfce4-settings-manager/xfce-settings-manager-dialog.c
index b501623..e8e69b7 100644
--- a/xfce4-settings-manager/xfce-settings-manager-dialog.c
+++ b/xfce4-settings-manager/xfce-settings-manager-dialog.c
@@ -201,10 +201,10 @@ xfce_settings_manager_dialog_init 
(XfceSettingsManagerDialog *dialog)
 
 
     dialog->button_help = gtk_dialog_add_button (GTK_DIALOG (dialog),
-                                                 _("Help"), GTK_RESPONSE_HELP);
+                                                 _("_Help"), 
GTK_RESPONSE_HELP);
     image = gtk_image_new_from_icon_name ("help-browser", 
GTK_ICON_SIZE_BUTTON);
     gtk_button_set_image (GTK_BUTTON (dialog->button_help), image);
-    button = gtk_dialog_add_button (GTK_DIALOG (dialog), _("Close"), 
GTK_RESPONSE_CLOSE);
+    button = gtk_dialog_add_button (GTK_DIALOG (dialog), _("_Close"), 
GTK_RESPONSE_CLOSE);
     image = gtk_image_new_from_icon_name ("window-close", 
GTK_ICON_SIZE_BUTTON);
     gtk_button_set_image (GTK_BUTTON (button), image);
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
_______________________________________________
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits

Reply via email to