Skip to content

Commit 62cf2a0

Browse files
committed
1 parent 0d81710 commit 62cf2a0

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

  • src/vs/workbench/contrib/debug/browser

src/vs/workbench/contrib/debug/browser/repl.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -444,7 +444,6 @@ export class Repl extends Panel implements IPrivateReplService, IHistoryNavigati
444444

445445
private createReplInput(container: HTMLElement): void {
446446
this.replInputContainer = dom.append(container, $('.repl-input-wrapper'));
447-
this.replInputContainer.title = nls.localize('debugConsole', "Debug Console");
448447

449448
const { scopedContextKeyService, historyNavigationEnablement } = createAndBindHistoryNavigationWidgetScopedContextKeyService(this.contextKeyService, { target: this.replInputContainer, historyNavigator: this });
450449
this.historyNavigationEnablement = historyNavigationEnablement;
@@ -455,6 +454,8 @@ export class Repl extends Panel implements IPrivateReplService, IHistoryNavigati
455454
[IContextKeyService, scopedContextKeyService], [IPrivateReplService, this]));
456455
const options = getSimpleEditorOptions();
457456
options.readOnly = true;
457+
options.ariaLabel = nls.localize('debugConsole', "Debug Console");
458+
458459
this.replInput = this.scopedInstantiationService.createInstance(CodeEditorWidget, this.replInputContainer, options, getSimpleCodeEditorWidgetOptions());
459460

460461
this._register(this.replInput.onDidScrollChange(e => {

0 commit comments

Comments
 (0)