Skip to content

Commit 0c54420

Browse files
committed
fix: set the initial value of the config values
1 parent b39fa4f commit 0c54420

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/mixins/canvas-drawer.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ export default class CanvasDrawer {
1818
// set in setModel of minimapElement
1919
this.minimap = undefined
2020
// set by minimapElement
21-
this.displayCodeHighlights = undefined
22-
this.ignoreWhitespacesInTokens = undefined
21+
this.displayCodeHighlights = atom.config.get('minimap.displayCodeHighlights')
22+
this.ignoreWhitespacesInTokens = atom.config.get('minimap.ignoreWhitespacesInTokens')
2323

2424
/**
2525
* This MinimapElement's DOMStylesReader

0 commit comments

Comments
 (0)