diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2014-11-02 09:53:10 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2014-11-02 09:53:10 +0100 |
commit | 2785a691b958a79a1dd606c445188c71c3f58b3c (patch) | |
tree | 671ec0f07cc8b60529e302aac5348b062f103942 /src/AppWindow.vala | |
parent | 566dc060676b41e1e58a446b7dcc4159e242fee6 (diff) |
Imported Upstream version 0.20.2upstream/0.20.2
Diffstat (limited to 'src/AppWindow.vala')
-rw-r--r-- | src/AppWindow.vala | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/AppWindow.vala b/src/AppWindow.vala index 782f953..5a8e9c4 100644 --- a/src/AppWindow.vala +++ b/src/AppWindow.vala @@ -146,7 +146,11 @@ public class FullscreenWindow : PageWindow { return true; } - // Make sure this event gets propagated to the underlying window... + // propagate to this (fullscreen) window respecting "stop propagation" result... + if (base.key_press_event != null && base.key_press_event(event)) + return true; + + // ... then propagate to the underlying window hidden behind this fullscreen one return AppWindow.get_instance().key_press_event(event); } |