We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc078fe commit f146ef8Copy full SHA for f146ef8
lib/minimap.js
@@ -1088,7 +1088,9 @@ export default class Minimap {
1088
* @return {DecorationManagement}
1089
*/
1090
getDecorationManagement () {
1091
- if (this.DecorationManagement === undefined) {
+ if (this.DecorationManagement === undefined &&
1092
+ this.minimapElement // TODO: find why this becomes null: https://github.com/atom-minimap/minimap/issues/766
1093
+ ) {
1094
this.DecorationManagement = this.minimapElement.DecorationManagement
1095
}
1096
return this.DecorationManagement
0 commit comments