From 9aad77e486f3d150ebb3315aa991b7f41c7609dc Mon Sep 17 00:00:00 2001 From: Liza Carvelli Date: Sun, 3 Nov 2024 19:28:16 +0100 Subject: [PATCH] Close window when clicking 'FInish setup' --- Questionable/Windows/OneTimeSetupWindow.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Questionable/Windows/OneTimeSetupWindow.cs b/Questionable/Windows/OneTimeSetupWindow.cs index 2e8ac1ff..6026bafe 100644 --- a/Questionable/Windows/OneTimeSetupWindow.cs +++ b/Questionable/Windows/OneTimeSetupWindow.cs @@ -111,6 +111,7 @@ internal sealed class OneTimeSetupWindow : LWindow, IDisposable { _configuration.MarkPluginSetupComplete(); _pluginInterface.SavePluginConfig(_configuration); + IsOpen = false; } } }