From 3313d3ac81f8407b2eb7c1bb30b9e89bb61dfe9b Mon Sep 17 00:00:00 2001 From: v6ole Date: Thu, 18 Jun 2026 16:06:18 +0800 Subject: [PATCH] fix: remove SVG text, keep only StreamDock native title --- com.streamdock.ai-monitor.sdPlugin/plugin/index.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/com.streamdock.ai-monitor.sdPlugin/plugin/index.js b/com.streamdock.ai-monitor.sdPlugin/plugin/index.js index a111226..9999f72 100644 --- a/com.streamdock.ai-monitor.sdPlugin/plugin/index.js +++ b/com.streamdock.ai-monitor.sdPlugin/plugin/index.js @@ -93,7 +93,7 @@ function makeSvg(fill, label, blink, breathe) { var anim = ''; if (blink) anim = ''; else if (breathe) anim = ''; - return '' + anim + '' + label + ''; + return '' + anim + ''; } function setDisplay(ctx, state) { @@ -109,8 +109,7 @@ function setDisplay(ctx, state) { var anim = ''; if (d.blink) anim = ''; else if (d.breathe) anim = ''; - svg += '' + anim + ''; - svg += '' + d.title + ''; + svg += '' + anim + ''; plugin.setImage(ctx, 'data:image/svg+xml;charset=utf-8,' + svg); } }