Skip to content

Commit

Permalink
Changed from using Outline to Border styles to render the indent guide.
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeRobich committed Jun 7, 2016
1 parent 03b1d6e commit 9562577
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "indent-guides",
"displayName": "Indent Guides",
"description": "This extensions adds indent guides to the editor.",
"version": "0.0.4",
"version": "0.0.5",
"publisher": "JoeyRobichaud",
"icon": "/images/icon.png",
"galleryBanner": {
Expand Down
6 changes: 3 additions & 3 deletions src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,9 @@ class GuideDecorator {
createIndentGuideDecoration():TextEditorDecorationType {
var configuration:any = workspace.getConfiguration("indent-guide");
return window.createTextEditorDecorationType({
outlineColor: configuration.color,
outlineWidth: "1px",
outlineStyle: configuration.style
borderColor: configuration.color,
borderWidth: "0 0 0 1px",
borderStyle: configuration.style
});
}

Expand Down

0 comments on commit 9562577

Please sign in to comment.