Skip to content

Commit

Permalink
fix: gap in color gutter in active line on first boot
Browse files Browse the repository at this point in the history
  • Loading branch information
abose committed Jan 17, 2025
1 parent 818b908 commit 49a7a13
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/extensionsIntegrated/CSSColorPreview/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,8 @@ define(function (require, exports, module) {
if (activeEditor) {
activeEditor.off("change", onChanged);
activeEditor.on("change", onChanged);
activeEditor.off("cursorActivity.colorPreview");
activeEditor.on("cursorActivity.colorPreview", _cursorActivity);
showColorMarks();
_cursorActivity(null, activeEditor);
}
Expand Down

0 comments on commit 49a7a13

Please sign in to comment.