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 5793df5 commit 81fdc6fCopy full SHA for 81fdc6f
src/model/line_widget.js
@@ -39,7 +39,7 @@ export class LineWidget {
39
this.height = null
40
let diff = widgetHeight(this) - oldH
41
if (!diff) return
42
- updateLineHeight(line, line.height + diff)
+ if (!lineIsHidden(this.doc, line)) updateLineHeight(line, line.height + diff)
43
if (cm) {
44
runInOp(cm, () => {
45
cm.curOp.forceUpdate = true
0 commit comments