[Xfce4-commits] [xfce/xfce4-settings] 01/01: settings manager: Add default mnemonics back

noreply at xfce.org noreply at xfce.org
Mon Jul 16 22:03:27 CEST 2018


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

o   c   h   o   s   i       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 xfce/xfce4-settings.

commit e98086890f1f72b6b4d43e8e25251b58791f026d
Author: Simon Steinbeiss <simon.steinbeiss at 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.


More information about the Xfce4-commits mailing list