提交 991b74bc 编写于 作者: I isidor

debug: stop support for debug.hideActionBar

fixes #52438
上级 4dbe064b
......@@ -93,8 +93,7 @@ export class DebugActionsWidget extends Themable implements IWorkbenchContributi
this.updateScheduler = new RunOnceScheduler(() => {
const state = this.debugService.state;
const toolBarLocation = this.configurationService.getValue<IDebugConfiguration>('debug').toolBarLocation;
if (state === State.Inactive || this.configurationService.getValue<IDebugConfiguration>('debug').hideActionBar
|| toolBarLocation === 'docked' || toolBarLocation === 'hidden') {
if (state === State.Inactive || toolBarLocation === 'docked' || toolBarLocation === 'hidden') {
return this.hide();
}
......
......@@ -355,7 +355,6 @@ export interface IDebugConfiguration {
openDebug: 'neverOpen' | 'openOnSessionStart' | 'openOnFirstSessionStart' | 'openOnDebugBreak';
openExplorerOnEnd: boolean;
inlineValues: boolean;
hideActionBar: boolean;
toolBarLocation: 'floating' | 'docked' | 'hidden';
showInStatusBar: 'never' | 'always' | 'onFirstSessionStart';
internalConsoleOptions: 'neverOpen' | 'openOnSessionStart' | 'openOnFirstSessionStart';
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册