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 8a78562 commit 01ba8fbCopy full SHA for 01ba8fb
modules/draw/TTextPainter.mjs
@@ -15,6 +15,11 @@ class TTextPainter extends ObjectPainter {
15
pp = this.getPadPainter(),
16
fp = this.getFramePainter(),
17
is_url = text.fName.startsWith('http://') || text.fName.startsWith('https://');
18
+
19
+ // special handling of dummy frame painter
20
+ if (fp?.getDrawDom() === null)
21
+ return this;
22
23
let fact = 1, use_frame = false;
24
25
this.createAttText({ attr: text });
0 commit comments