diff options
author | Matthias Clasen <mclasen@redhat.com> | 2022-10-05 20:14:09 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2022-12-14 07:27:27 -0500 |
commit | b2380a21ef04a8f8d4f059bed450f269842cd3c2 (patch) | |
tree | 44dac545a7f20280e6db8263d06b97a6d217573e | |
parent | 573204987c0471133a8f5d477ae7d013582096c0 (diff) | |
download | gtk+-mountoperation-backports-4-8.tar.gz |
mountoperation: Add a mnemonic to a buttonmountoperation-backports-4-8
This is a good practice, even if this is a rarely
used dialog.
-rw-r--r-- | gtk/gtkmountoperation.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkmountoperation.c b/gtk/gtkmountoperation.c index 8c56917bfc..5b41767e54 100644 --- a/gtk/gtkmountoperation.c +++ b/gtk/gtkmountoperation.c @@ -1568,7 +1568,7 @@ create_show_processes_dialog (GtkMountOperation *op, gtk_scrolled_window_set_child (GTK_SCROLLED_WINDOW (scrolled_window), list_view); gtk_box_append (GTK_BOX (vbox), scrolled_window); - button = gtk_button_new_with_mnemonic (_("End Process")); + button = gtk_button_new_with_mnemonic (_("_End Process")); gtk_widget_set_halign (button, GTK_ALIGN_END); g_signal_connect (button, "clicked", G_CALLBACK (on_end_process_activated), op); gtk_box_append (GTK_BOX (vbox), button); |