mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-25 02:58:56 +01:00
Add flag for "simple" debug UI (#128801)
* Implement simple debug UI mode * Don't show debug viewlet on step * Move flag to proposed * Pass around full debugUI options object * Implement isSimpleUI in mock
This commit is contained in:
@@ -291,7 +291,8 @@ export abstract class ExtHostDebugServiceBase implements IExtHostDebugService, E
|
||||
parentSessionID: options.parentSession ? options.parentSession.id : undefined,
|
||||
repl: options.consoleMode === DebugConsoleMode.MergeWithParent ? 'mergeWithParent' : 'separate',
|
||||
noDebug: options.noDebug,
|
||||
compact: options.compact
|
||||
compact: options.compact,
|
||||
debugUI: options.debugUI
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user