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 4c3e9fe commit b7a2ce9Copy full SHA for b7a2ce9
modules/gpad/TFramePainter.mjs
@@ -2514,6 +2514,11 @@ class TFramePainter extends FrameInteractive {
2514
this.fillatt.setSolidColor('white');
2515
else if ((pad?.fFillStyle === 4000) && !this.fillatt.empty()) // special case of transpad.C macro, which set transparent pad
2516
this.fillatt.setOpacity(0);
2517
+
2518
+ if (pad && (pad.fFrameBorderMode || (pad.fFrameBorderSize !== 1))) {
2519
+ this.#border_mode = pad.fFrameBorderMode;
2520
+ this.#border_size = pad.fFrameBorderSize;
2521
+ }
2522
}
2523
2524
if (!tframe && (pad?.fFrameLineColor !== undefined))
0 commit comments