Merge branch 'wip/333-move-label-shortcuts' into 'master'

client: Fix move/label keyboard shortcuts being swapped

Closes #333

See merge request GNOME/geary!180
This commit is contained in:
Michael Gratton 2019-03-26 06:30:39 +00:00
commit 37059950aa

View file

@ -1735,11 +1735,11 @@ public class GearyController : Geary.BaseObject {
}
private void on_show_move_menu(SimpleAction? action) {
this.main_window.main_toolbar.copy_message_button.clicked();
this.main_window.main_toolbar.move_message_button.clicked();
}
private void on_show_copy_menu(SimpleAction? action) {
this.main_window.main_toolbar.move_message_button.clicked();
this.main_window.main_toolbar.copy_message_button.clicked();
}
private async void mark_as_spam_toggle_async(Cancellable? cancellable) {