Skip to content

Commit

Permalink
Merge pull request #3 from DominicVonk/patch-1
Browse files Browse the repository at this point in the history
Update package.json
  • Loading branch information
jason-bloomerang committed Dec 22, 2020
2 parents 6227dd8 + 32a26fb commit 9ac7753
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,15 @@
],
"main": "./out/extension.js",
"contributes": {
"configuration": {
"title": "Debug Controls In Titlebar",
"properties": {
"debug_controls_in_titleblar.hideDebugStart": {
"type": "boolean",
"default": false,
"description": "Hides the Debug Start Icon."
}
},
"commands": [
{
"command": "debug-in-titlebar.debug-restart",
Expand Down Expand Up @@ -95,7 +104,7 @@
{
"command": "debug-in-titlebar.debug-start",
"group": "navigation@1999901",
"when": "debuggersAvailable && !inDebugMode || debugState == 'initializing'"
"when": "debuggersAvailable && !debug_controls_in_titleblar.hideDebugStart && !inDebugMode || debugState == 'initializing'"

},
{
Expand Down

0 comments on commit 9ac7753

Please sign in to comment.