diff --git a/window/src/os/macos/window.rs b/window/src/os/macos/window.rs index 64c4a7cb5..273c77027 100644 --- a/window/src/os/macos/window.rs +++ b/window/src/os/macos/window.rs @@ -2370,6 +2370,7 @@ impl WindowView { if (chars == "." && modifiers == Modifiers::SUPER) || (chars == "\u{1b}" && modifiers == Modifiers::CTRL) || (chars == "\t" && modifiers == Modifiers::CTRL) + || (chars == "\x19"/* Shift-Tab: See issue #1902 */) { // Synthesize a key down event for this, because macOS will // not do that, even though we tell it that we handled this event.