From 851a0e15a785ae454980401c770464e72ea16fea Mon Sep 17 00:00:00 2001 From: Plykiya <58439124+Plykiya@users.noreply.github.com> Date: Mon, 22 Jul 2024 19:22:59 -0700 Subject: [PATCH] fix crayon (#30263) Co-authored-by: plykiya --- Content.Client/Crayon/UI/CrayonWindow.xaml.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Content.Client/Crayon/UI/CrayonWindow.xaml.cs b/Content.Client/Crayon/UI/CrayonWindow.xaml.cs index b97786cd41..6ef282d219 100644 --- a/Content.Client/Crayon/UI/CrayonWindow.xaml.cs +++ b/Content.Client/Crayon/UI/CrayonWindow.xaml.cs @@ -89,6 +89,7 @@ namespace Content.Client.Crayon.UI if (obj.Button.Name == null) return; _selected = obj.Button.Name; + OnSelected?.Invoke(_selected); RefreshList(); } -- 2.51.2