[geary: 37/66] Bugfix for window focus event propogation



commit 075eb636bc66158c84fbd5b88ed98c0d30bcf973
Author: Chris Heywood <15127-creywood users noreply gitlab gnome org>
Date:   Fri Jan 10 15:37:16 2020 +0100

    Bugfix for window focus event propogation

 src/client/application/application-main-window.vala | 4 ++--
 src/client/composer/composer-window.vala            | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/src/client/application/application-main-window.vala 
b/src/client/application/application-main-window.vala
index b57537d12..e77080010 100644
--- a/src/client/application/application-main-window.vala
+++ b/src/client/application/application-main-window.vala
@@ -498,11 +498,11 @@ public class Application.MainWindow :
 
         this.focus_in_event.connect((w, e) => {
             application.controller.window_focus_in();
-            return true;
+            return false;
         });
         this.focus_out_event.connect((w, e) => {
             application.controller.window_focus_out();
-            return true;
+            return false;
         });
 
         setup_layout(application.config);
diff --git a/src/client/composer/composer-window.vala b/src/client/composer/composer-window.vala
index df0be8899..5a2d5d18c 100644
--- a/src/client/composer/composer-window.vala
+++ b/src/client/composer/composer-window.vala
@@ -50,11 +50,11 @@ public class Composer.Window : Gtk.ApplicationWindow, Container {
 
         this.focus_in_event.connect((w, e) => {
             application.controller.window_focus_in();
-            return true;
+            return false;
         });
         this.focus_out_event.connect((w, e) => {
             application.controller.window_focus_out();
-            return true;
+            return false;
         });
 
         show();


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