From 1b941d6531cff71704e5b1056c872c0ff6e25292 Mon Sep 17 00:00:00 2001 From: Chromium <62724067+Chromum@users.noreply.github.com> Date: Sun, 11 May 2025 13:15:57 +0100 Subject: [PATCH] Fixed null reference with stickynotes --- Editor/Scripts/Editor/ImageProcessingGraphAsset.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Editor/Scripts/Editor/ImageProcessingGraphAsset.cs b/Editor/Scripts/Editor/ImageProcessingGraphAsset.cs index 5e49131..d06176d 100644 --- a/Editor/Scripts/Editor/ImageProcessingGraphAsset.cs +++ b/Editor/Scripts/Editor/ImageProcessingGraphAsset.cs @@ -31,6 +31,7 @@ namespace ImageProcessingGraph.Editor { nodes = new List(); connections = new List(); + stickyNotes = new List(); }