From c26f97785bbe3433fed6e2faf2242779af2c364c Mon Sep 17 00:00:00 2001 From: Chris Dumas Date: Wed, 5 Aug 2026 11:57:34 +0000 Subject: [PATCH] Preserve save widget types for execution --- js/save_image/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/save_image/index.js b/js/save_image/index.js index 909b236..57551e6 100644 --- a/js/save_image/index.js +++ b/js/save_image/index.js @@ -78,8 +78,8 @@ function el(tag, className, text) { function hideWidget(widget) { if (!widget || widget.__dsiHidden) return; widget.__dsiHidden = true; + widget.origType = widget.origType || widget.type; widget.computeSize = () => [0, -4]; - widget.type = "hidden"; widget.hidden = true; }