Skip to content

Commit 2f48a0d

Browse files
SDA-4858 - Prevent keystroke Ctrl + Shift + M from propagating in Windows (#2342)
1 parent fb4003c commit 2f48a0d

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

src/app/window-handler.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -524,6 +524,7 @@ export class WindowHandler {
524524
const isSwitchMiniView =
525525
input.control && input.shift && input.key.toLowerCase() === 'm';
526526
if (isSwitchMiniView) {
527+
event.preventDefault();
527528
debouncedSwitchMiniView();
528529
}
529530
}

0 commit comments

Comments
 (0)