From 3a84fe2fb09e6868f02c42b0cccc9a4efdc1b4cc Mon Sep 17 00:00:00 2001 From: Asriel Camora Date: Thu, 24 Apr 2025 01:48:32 -0700 Subject: [PATCH] Hopefully fix the minor initial stall in synth helper initalization --- Craftimizer/Windows/SynthHelper.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Craftimizer/Windows/SynthHelper.cs b/Craftimizer/Windows/SynthHelper.cs index bc4afc9..c703f6c 100644 --- a/Craftimizer/Windows/SynthHelper.cs +++ b/Craftimizer/Windows/SynthHelper.cs @@ -200,7 +200,10 @@ public sealed unsafe class SynthHelper : Window, IDisposable } if (RecipeData?.RecipeId != recipeId) + { OnStartCrafting(recipeId); + OnStateUpdated(); + } if (IsRecalculateQueued) OnStateUpdated();