Skip to content

Commit

Permalink
Fixes microsoft#3308: Output Panel never has rulers
Browse files Browse the repository at this point in the history
  • Loading branch information
alexdima committed Feb 25, 2016
1 parent 413bcb9 commit feb540e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/vs/workbench/parts/output/browser/outputPanel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ export class OutputPanel extends StringEditor {
options.lineNumbers = false; // all output editors hide line numbers
options.glyphMargin = false;
options.lineDecorationsWidth = 20;
options.rulers = [];

let channel = this.outputService.getActiveChannel();
options.ariaLabel = channel ? nls.localize('outputPanelWithInputAriaLabel', "{0}, Output panel", channel) : nls.localize('outputPanelAriaLabel', "Output panel");
Expand Down

0 comments on commit feb540e

Please sign in to comment.