From 66d46b87125ec0605296e07ef3b519ba97b5940b Mon Sep 17 00:00:00 2001 From: Liza Carvelli Date: Mon, 17 Jun 2024 00:32:24 +0200 Subject: [PATCH] Don't open window by default --- Questionable/Windows/DebugWindow.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Questionable/Windows/DebugWindow.cs b/Questionable/Windows/DebugWindow.cs index 8cfdb488..7cc3f977 100644 --- a/Questionable/Windows/DebugWindow.cs +++ b/Questionable/Windows/DebugWindow.cs @@ -63,7 +63,9 @@ internal sealed class DebugWindow : LWindow, IPersistableWindowConfig _navmeshIpc = navmeshIpc; _logger = logger; +#if DEBUG IsOpen = true; +#endif SizeConstraints = new WindowSizeConstraints { MinimumSize = new Vector2(200, 30),