Skip to content

Commit d08a3eb

Browse files
author
Anton Vildyaev
committed
fix compilation error
1 parent 6387ea6 commit d08a3eb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/vs/workbench/parts/debug/electron-browser/debugService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -876,7 +876,7 @@ export class DebugService implements debug.IDebugService {
876876
// Open debug viewlet based on the visibility of the side bar and debugViewletOptions setting
877877
if ((this.partService.isVisible(Parts.SIDEBAR_PART) || this.contextService.getWorkbenchState() === WorkbenchState.EMPTY)
878878
&& ((debugViewletOptions === 'openOnSessionStart')
879-
|| ((debugViewletOptions === 'openOnFirstSessionStart' && !this.viewModel.changedWorkbenchViewState)) {
879+
|| (debugViewletOptions === 'openOnFirstSessionStart' && !this.viewModel.changedWorkbenchViewState))) {
880880
this.viewModel.changedWorkbenchViewState = true;
881881
this.viewletService.openViewlet(debug.VIEWLET_ID);
882882
}

0 commit comments

Comments
 (0)