diff options
author | monsta <[email protected]> | 2016-01-06 20:50:34 +0300 |
---|---|---|
committer | monsta <[email protected]> | 2016-01-06 20:50:34 +0300 |
commit | ba104f5e05bdb57357224b9c36fbe5edd5caf006 (patch) | |
tree | 2d99a656c98ebb1d7102871e94287aa143dd5e1b /capplets/windows/mate-window-properties.c | |
parent | 1b111a4e2698705026781b9bbc998bad019cf350 (diff) | |
download | mate-control-center-ba104f5e05bdb57357224b9c36fbe5edd5caf006.tar.bz2 mate-control-center-ba104f5e05bdb57357224b9c36fbe5edd5caf006.tar.xz |
window properties: changed accelerator key of "Unselect..."
'U' was already used in this dialog, so it didn't really work
Diffstat (limited to 'capplets/windows/mate-window-properties.c')
-rw-r--r-- | capplets/windows/mate-window-properties.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/capplets/windows/mate-window-properties.c b/capplets/windows/mate-window-properties.c index a92b8b1b..a549dc48 100644 --- a/capplets/windows/mate-window-properties.c +++ b/capplets/windows/mate-window-properties.c @@ -436,7 +436,7 @@ main (int argc, char **argv) focus_mode_checkbutton = gtk_check_button_new_with_mnemonic (_("_Select windows when the mouse moves over them")); gtk_box_pack_start (GTK_BOX (vbox), focus_mode_checkbutton, FALSE, FALSE, 6); - focus_mode_mouse_checkbutton = gtk_check_button_new_with_mnemonic (_("_Unselect windows when the mouse leaves them")); + focus_mode_mouse_checkbutton = gtk_check_button_new_with_mnemonic (_("U_nselect windows when the mouse leaves them")); gtk_box_pack_start (GTK_BOX (hbox1), focus_mode_mouse_checkbutton, FALSE, FALSE, 6); gtk_box_pack_start (GTK_BOX (vbox1), hbox1, FALSE, FALSE, 6); |