From a576912e03dbb94eb786fd0b5d30e808b077e6d9 Mon Sep 17 00:00:00 2001 From: "Mr. M" Date: Thu, 2 Oct 2025 23:43:04 +0200 Subject: [PATCH] fix: Fixed empty split ksb for windows, b=no-bug, c=kbs --- src/zen/kbs/ZenKeyboardShortcuts.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/zen/kbs/ZenKeyboardShortcuts.mjs b/src/zen/kbs/ZenKeyboardShortcuts.mjs index 38d26448a..dcb61e09c 100644 --- a/src/zen/kbs/ZenKeyboardShortcuts.mjs +++ b/src/zen/kbs/ZenKeyboardShortcuts.mjs @@ -1084,7 +1084,7 @@ class nsZenKeyboardShortcutsVersioner { data.push( new KeyShortcut( 'zen-new-empty-split-view', - AppConstants.platform == 'linux' ? '*' : '+', + AppConstants.platform == 'macosx' ? '+' : '*', '', ZEN_SPLIT_VIEW_SHORTCUTS_GROUP, nsKeyShortcutModifiers.fromObject({ accel: true, shift: true }),