mountoperation: Add a mnemonic to a button
authorMatthias Clasen <mclasen@redhat.com>
Thu, 6 Oct 2022 00:14:09 +0000 (20:14 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Wed, 14 Dec 2022 12:27:27 +0000 (07:27 -0500)
This is a good practice, even if this is a rarely
used dialog.

gtk/gtkmountoperation.c

index 8c56917bfc93c6d32a41450e9f353b11cb29ec95..5b41767e54cf87b3aa1c424e83fce15272733b51 100644 (file)
@@ -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);