summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Mannehed <samuel@cendio.se>2020-05-01 14:38:09 +0200
committerSamuel Mannehed <samuel@cendio.se>2020-05-01 14:38:09 +0200
commit8df281cce6822b534ad43edc9efb18a5292e8e60 (patch)
tree2f0fea8d736988bb4e93f8f7b395f8abca3aa7d7
parentc12e5b2b544aff6f662c7f61f82ce40d132e14df (diff)
downloadnovnc-8df281cce6822b534ad43edc9efb18a5292e8e60.tar.gz
Don't fade the control bar if it has focus
Fixes github issue #1369
-rw-r--r--app/ui.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/app/ui.js b/app/ui.js
index 1c6248e..8be8afb 100644
--- a/app/ui.js
+++ b/app/ui.js
@@ -518,6 +518,13 @@ const UI = {
},
idleControlbar() {
+ // Don't fade if a child of the control bar has focus
+ if (document.getElementById('noVNC_control_bar')
+ .contains(document.activeElement) && document.hasFocus()) {
+ UI.activateControlbar();
+ return;
+ }
+
document.getElementById('noVNC_control_bar_anchor')
.classList.add("noVNC_idle");
},