From 175b843b664724c0265ab36c7dcee365f1d1d04e Mon Sep 17 00:00:00 2001 From: Alex Tanskanen Date: Mon, 4 Nov 2019 14:22:46 +0100 Subject: [PATCH] Add "macOS shuffle" to iOS as well Since iOS functions like macOS with regards to Alt behaving like AltGr, we need the same workaround on iOS as well. --- core/input/keyboard.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/input/keyboard.js b/core/input/keyboard.js index ab62378b..6e41365e 100644 --- a/core/input/keyboard.js +++ b/core/input/keyboard.js @@ -135,7 +135,7 @@ export default class Keyboard { // keys around a bit to make things more sane for the remote // server. This method is used by RealVNC and TigerVNC (and // possibly others). - if (browser.isMac()) { + if (browser.isMac() || browser.isIOS()) { switch (keysym) { case KeyTable.XK_Super_L: keysym = KeyTable.XK_Alt_L;