summaryrefslogtreecommitdiff
path: root/src/AppWindow.vala
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff-webhosting.net>2014-10-03 14:54:01 +0200
committerJörg Frings-Fürst <debian@jff-webhosting.net>2014-10-03 14:54:01 +0200
commit7b10dbdcb4c9027cd6f4690d6d70a2f36b37ab26 (patch)
tree8c2dc037df8983a487c4f271a95e38c87f4711e3 /src/AppWindow.vala
parent021b663419ce8524fe1bd3f928062bef96f215c4 (diff)
parente97c1ca41f345bcf57417f6dc06e0d42f3547443 (diff)
Merge tag 'upstream/0.20.1'
Upstream version 0.20.1
Diffstat (limited to 'src/AppWindow.vala')
-rw-r--r--src/AppWindow.vala6
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);
}