From cce56610fcdeb2054f841b702f9ce81a83445be9 Mon Sep 17 00:00:00 2001 From: Jon Kazama Date: Tue, 26 May 2026 17:37:47 +0200 Subject: [PATCH] feat(settings): register ColorPicker in DI --- HellionChat/PluginHostFactory.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/HellionChat/PluginHostFactory.cs b/HellionChat/PluginHostFactory.cs index 6b2e993..8d37f6d 100644 --- a/HellionChat/PluginHostFactory.cs +++ b/HellionChat/PluginHostFactory.cs @@ -151,6 +151,9 @@ internal static class PluginHostFactory sp.GetRequiredService(), sp.GetRequiredService() )); + services.AddSingleton(sp => new Ui.Components.Settings.ColorPicker( + sp.GetRequiredService() + )); services.AddSingleton(sp => new Ui.Components.StatusBar( sp.GetRequiredService(), sp.GetRequiredService()