Skip to content

Commit

Permalink
1.0.7 - removing the interdependent UX complexity.
Browse files Browse the repository at this point in the history
  • Loading branch information
jason-bloomerang committed Dec 27, 2020
1 parent b4dd979 commit 6d22c15
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"publisher": "EverlastEngineering",
"displayName": "Debug Controls In Titlebar",
"description": "Shows the debug controls into the titlebar.",
"version": "1.0.6",
"version": "1.0.7",
"engines": {
"vscode": "^1.52.0"
},
Expand Down Expand Up @@ -111,43 +111,43 @@
{
"command": "debug-in-titlebar.debug-pause",
"group": "navigation@1999901",
"when": "config.debug.toolBarLocation == 'hidden' && debuggersAvailable && inDebugMode && debugState == 'running'"
"when": "debuggersAvailable && inDebugMode && debugState == 'running'"
},
{
"command": "debug-in-titlebar.debug-continue",
"group": "navigation@1999901",
"when": "config.debug.toolBarLocation == 'hidden' && debuggersAvailable && inDebugMode && debugState == 'stopped'"
"when": "debuggersAvailable && inDebugMode && debugState == 'stopped'"
},
{
"command": "debug-in-titlebar.debug-stepOver",
"group": "navigation@1999903",
"when": "config.debug.toolBarLocation == 'hidden' && debuggersAvailable && inDebugMode"
"when": "debuggersAvailable && inDebugMode"

},
{
"command": "debug-in-titlebar.debug-stepInto",
"group": "navigation@1999904",
"when": "config.debug.toolBarLocation == 'hidden' && debuggersAvailable && inDebugMode"
"when": "debuggersAvailable && inDebugMode"
},
{
"command": "debug-in-titlebar.debug-stepOut",
"group": "navigation@1999905",
"when": "config.debug.toolBarLocation == 'hidden' && debuggersAvailable && inDebugMode"
"when": "debuggersAvailable && inDebugMode"
},
{
"command": "debug-in-titlebar.debug-restart",
"group": "navigation@1999907",
"when": "config.debug.toolBarLocation == 'hidden' && debuggersAvailable && inDebugMode"
"when": "debuggersAvailable && inDebugMode"
},
{
"command": "debug-in-titlebar.debug-stop",
"group": "navigation@1999908",
"when": "config.debug.toolBarLocation == 'hidden' && debuggersAvailable && inDebugMode"
"when": "debuggersAvailable && inDebugMode"
},
{
"command": "debug-in-titlebar.debug-toggleBreakpoints",
"group": "navigation@1999908",
"when": "config.debug.toolBarLocation == 'hidden' && debuggersAvailable && inDebugMode"
"when": "debuggersAvailable && inDebugMode"
}
]
}
Expand Down

0 comments on commit 6d22c15

Please sign in to comment.