From 5e99ab13c6cfef7613afc694a05ce86ae335bd60 Mon Sep 17 00:00:00 2001 From: Shiva Poudel <3774827+shivapoudel@users.noreply.github.com> Date: Sun, 14 Jul 2024 03:45:07 +0545 Subject: [PATCH] fix: fullscreen keybinding conflict with F11 with activeViewlet (#952) * Fix - Fullscreen keybinding conflict with F11 with activeViewlet * Remove activeViewlet case for F10 --------- Co-authored-by: Damjan Cvetko --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 107e0641..5654354a 100644 --- a/package.json +++ b/package.json @@ -581,7 +581,7 @@ { "command": "extension.php-debug.startWithStopOnEntry", "key": "F11", - "when": "!inDebugMode && debugConfigurationType == 'php'" + "when": "!inDebugMode && activeViewlet == 'workbench.view.debug' && debugConfigurationType == 'php'" } ] }