From 27d58738bc0199716187218e095da74c5982fffa Mon Sep 17 00:00:00 2001 From: Matt Parker <61717342+MattParkerDev@users.noreply.github.com> Date: Thu, 2 Oct 2025 21:01:48 +1000 Subject: [PATCH] Hide window on select --- src/SharpIDE.Godot/IdeWindow.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/SharpIDE.Godot/IdeWindow.cs b/src/SharpIDE.Godot/IdeWindow.cs index af151ea..65784b5 100644 --- a/src/SharpIDE.Godot/IdeWindow.cs +++ b/src/SharpIDE.Godot/IdeWindow.cs @@ -83,6 +83,7 @@ public partial class IdeWindow : Control await this.InvokeAsync(() => { + if (fullscreen is false) _slnPicker.GetParent().Hide(); _slnPicker.GetParent().RemoveChild(_slnPicker); _slnPicker.QueueFree(); _slnPicker = null;