From 5cb69f30271dfa3722fefab7983f7e799634e40d Mon Sep 17 00:00:00 2001 From: filtered <176114999+webfiltered@users.noreply.github.com> Date: Thu, 1 May 2025 12:24:19 +1000 Subject: [PATCH] Hard-coded node border --- src/services/litegraphService.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/services/litegraphService.ts b/src/services/litegraphService.ts index 0cdd16139..15460c3b1 100644 --- a/src/services/litegraphService.ts +++ b/src/services/litegraphService.ts @@ -86,6 +86,9 @@ export const useLitegraphService = () => { * @internal Setup stroke styles for the node under various conditions. */ #setupStrokeStyles() { + this.strokeStyles['noice'] = function (this: LGraphNode) { + return { color: '#f0ff41', lineWidth: 1, padding: 0.5 } + } this.strokeStyles['running'] = function (this: LGraphNode) { if (this.id == app.runningNodeId) { return { color: '#0f0' }