From cfca8f7284ebe537b089bfc67e6331e14d8994d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tor=20Hedin=20Br=C3=B8nner?= Date: Wed, 29 Jan 2020 22:11:36 +0100 Subject: [PATCH] navigator: fix escape --- navigator.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/navigator.js b/navigator.js index 7d2fb52..ea0bb13 100644 --- a/navigator.js +++ b/navigator.js @@ -115,7 +115,7 @@ var ActionDispatcher = class { // visual destruction on key-press and signal to the release handler // that we should destroy the dispactcher too // https://github.com/paperwm/PaperWM/issues/70 - if (keysym == Clutter.Escape) { + if (keysym == Clutter.KEY_Escape) { this.navigator.destroy(); this._destroy = true; return Clutter.EVENT_STOP;