Skip to content

Commit

Permalink
hover polish
Browse files Browse the repository at this point in the history
fixes #37342
  • Loading branch information
isidorn committed Nov 1, 2017
1 parent 5ac8902 commit fce8c39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vs/workbench/parts/debug/browser/debugStatus.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export class DebugStatus extends Themable implements IStatusbarItem {
this.toDispose.push(dom.addDisposableListener(statusBarItem, 'click', () => {
this.quickOpenService.show('debug ').done(undefined, errors.onUnexpectedError);
}));
statusBarItem.title = nls.localize('debug', "Debug");
statusBarItem.title = nls.localize('selectAndStartDebug', "Select and start debug configuration");
const a = dom.append(statusBarItem, $('a'));
this.icon = dom.append(a, $('.icon'));
this.label = dom.append(a, $('span.label'));
Expand Down

0 comments on commit fce8c39

Please sign in to comment.