Skip to content

Commit

Permalink
Merge pull request #73214 from BaluErtl/master
Browse files Browse the repository at this point in the history
Incorrect wording of Outline drawer default message
  • Loading branch information
jrieken authored May 3, 2019
2 parents 816a315 + b46edaf commit b3d37f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vs/workbench/contrib/outline/browser/outlinePanel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,7 @@ export class OutlinePanel extends ViewletPanel {
}

if (!editor || !editor.hasModel() || !DocumentSymbolProviderRegistry.has(editor.getModel())) {
return this._showMessage(localize('no-editor', "There are no editors open that can provide outline information."));
return this._showMessage(localize('no-editor', "The active editor cannot provide outline information."));
}

let textModel = editor.getModel();
Expand Down

0 comments on commit b3d37f8

Please sign in to comment.