From 909787108d5278dfd7543b5fdad8611c75dbd0ea Mon Sep 17 00:00:00 2001 From: Juan Treminio Date: Thu, 23 Jul 2026 08:16:24 -0500 Subject: [PATCH] Auto-show controls for video previews on SwarmSaveAnimationWS nodes --- .../ExtraNodes/SwarmComfyCommon/web/swarmhelper.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/BuiltinExtensions/ComfyUIBackend/ExtraNodes/SwarmComfyCommon/web/swarmhelper.js b/src/BuiltinExtensions/ComfyUIBackend/ExtraNodes/SwarmComfyCommon/web/swarmhelper.js index af9f3f599..d05f6c710 100644 --- a/src/BuiltinExtensions/ComfyUIBackend/ExtraNodes/SwarmComfyCommon/web/swarmhelper.js +++ b/src/BuiltinExtensions/ComfyUIBackend/ExtraNodes/SwarmComfyCommon/web/swarmhelper.js @@ -38,6 +38,7 @@ function swarmShowPreview(node, blob, isVideo) { element.autoplay = true; element.loop = true; element.playsInline = true; + element.controls = true; } element.style.width = '100%'; element.style.height = '100%';