Skip to content

Commit

Permalink
Fix - Fullscreen keybinding conflict with F11 with activeViewlet
Browse files Browse the repository at this point in the history
  • Loading branch information
shivapoudel authored and zobo committed Jul 13, 2024
1 parent 5c37f12 commit 524fae8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -576,12 +576,12 @@
{
"command": "extension.php-debug.startWithStopOnEntry",
"key": "F10",
"when": "!inDebugMode && debugConfigurationType == 'php'"
"when": "!inDebugMode && activeViewlet == 'workbench.view.debug' && debugConfigurationType == 'php'"
},
{
"command": "extension.php-debug.startWithStopOnEntry",
"key": "F11",
"when": "!inDebugMode && debugConfigurationType == 'php'"
"when": "!inDebugMode && activeViewlet == 'workbench.view.debug' && debugConfigurationType == 'php'"
}
]
}
Expand Down

0 comments on commit 524fae8

Please sign in to comment.