We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 939e4d9 commit 8763126Copy full SHA for 8763126
2 files changed
modules/draw.mjs
@@ -696,7 +696,7 @@ async function makeImage(args) {
696
if (!mainsvg.attr('width') && !mainsvg.attr('height'))
697
mainsvg.attr('width', args.width).attr('height', args.height);
698
699
- if (style_filter)
+ if (style_filter && (style_filter !== 'none'))
700
mainsvg.style('filter', style_filter);
701
702
function clear_element() {
modules/gui/display.mjs
@@ -1281,7 +1281,7 @@ class BatchDisplay extends MDIDisplay {
1281
1282
mainsvg.attr('width', this.width).attr('height', this.height);
1283
1284
1285
1286
1287
0 commit comments