From 2786d9fa632149e8383962076383cc532d2843a2 Mon Sep 17 00:00:00 2001 From: tel0065 <77864718+tel0065@users.noreply.github.com> Date: Sat, 7 May 2022 13:33:29 -0500 Subject: [PATCH] Bug Fix default values for booleans were entered as strings, fixed both --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 3b9af28..4b984b6 100644 --- a/package.json +++ b/package.json @@ -417,13 +417,13 @@ "order": 4, "type": "boolean", "markdownDescription": "Enable/Disable the line highlighter.\n\n\n* `Enabled (our default)`: Checked: Line Highlighter is turned `ON`\n* `Disabled`: Unchecked: Line Highlighter is turned `OFF`\n\n### `NOTE`: You Must Close Settings And RESTART Visual Studio Code For The Line Highlighter To Function\n#### Even If No Changes Were Made", - "default": "true" + "default": true }, "mind-reader.lineHighlighter.multiLineIsEnabled": { "order": 5, "type": "boolean", "markdownDescription": "Temporarily Disable highlighting when highlighting multiple lines.\n\n\n* `Enabled`: Checked: Multiline Highlighting is turned `ON`:\n* * When you click and drag line highlights will be applied to all lines\n* `Disabled (our default)`: Unchecked: Multiline Highlighting is turned `OFF`:\n* * When you click and drag the line highlighter will disable itself then re-enable itself when you click onto a single line.", - "default": "false" + "default": false }, "mind-reader.lineHighlighter.backgroundColor": { "order": 6,