[geary/geary-0.13] Merge branch 'wip/333-move-label-shortcuts' into 'master'



commit 2972eeec2489a8548bffcd2a7fc589141bbcdc0e
Author: Michael Gratton <mike vee net>
Date:   Tue Mar 26 06:30:39 2019 +0000

    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
    
    (cherry picked from commit 37059950aa25338d5b54fd0070e517fcf13d5d4b)
    
    8bfc3712 client: Fix move/label keyboard shortcuts being swapped

 src/client/application/geary-controller.vala | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/client/application/geary-controller.vala b/src/client/application/geary-controller.vala
index 57248ff8..20ec40a0 100644
--- a/src/client/application/geary-controller.vala
+++ b/src/client/application/geary-controller.vala
@@ -1754,11 +1754,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) {


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]