We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6387ea6 commit d08a3ebCopy full SHA for d08a3eb
1 file changed
src/vs/workbench/parts/debug/electron-browser/debugService.ts
@@ -876,7 +876,7 @@ export class DebugService implements debug.IDebugService {
876
// Open debug viewlet based on the visibility of the side bar and debugViewletOptions setting
877
if ((this.partService.isVisible(Parts.SIDEBAR_PART) || this.contextService.getWorkbenchState() === WorkbenchState.EMPTY)
878
&& ((debugViewletOptions === 'openOnSessionStart')
879
- || ((debugViewletOptions === 'openOnFirstSessionStart' && !this.viewModel.changedWorkbenchViewState)) {
+ || (debugViewletOptions === 'openOnFirstSessionStart' && !this.viewModel.changedWorkbenchViewState))) {
880
this.viewModel.changedWorkbenchViewState = true;
881
this.viewletService.openViewlet(debug.VIEWLET_ID);
882
}
0 commit comments