From 694c55495696ae06211fda22371246cb0782993a Mon Sep 17 00:00:00 2001 From: Matt Parker <61717342+MattParkerDev@users.noreply.github.com> Date: Sat, 31 Jan 2026 13:16:59 +1000 Subject: [PATCH] fix theme uids --- src/SharpIDE.Godot/Features/Settings/SettingsWindow.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/SharpIDE.Godot/Features/Settings/SettingsWindow.cs b/src/SharpIDE.Godot/Features/Settings/SettingsWindow.cs index 5680014..8c2bf22 100644 --- a/src/SharpIDE.Godot/Features/Settings/SettingsWindow.cs +++ b/src/SharpIDE.Godot/Features/Settings/SettingsWindow.cs @@ -9,9 +9,9 @@ public partial class SettingsWindow : Window private CheckButton _debuggerUseSharpDbgCheckButton = null!; private OptionButton _themeOptionButton = null!; - private Theme _lightTheme = ResourceLoader.Load("uid://epmt8kq6efrs"); + private Theme _lightTheme = ResourceLoader.Load("uid://dc7l6bjhn61i5"); private Color _lightThemeClearColor = new Color("fdfdfd"); - private Theme _darkTheme = ResourceLoader.Load("uid://dc7l6bjhn61i5"); + private Theme _darkTheme = ResourceLoader.Load("uid://epmt8kq6efrs"); private Color _darkThemeClearColor = new Color("4d4d4d"); public override void _Ready()