From 5de9c6805185b024a0e0c9e03da06831646ebfde Mon Sep 17 00:00:00 2001 From: Liza Carvelli Date: Sun, 1 Oct 2023 23:54:22 +0200 Subject: [PATCH] Don't open UI by default --- Workshoppa/WorkshopPlugin.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Workshoppa/WorkshopPlugin.cs b/Workshoppa/WorkshopPlugin.cs index 5deeaa4..78b1f02 100644 --- a/Workshoppa/WorkshopPlugin.cs +++ b/Workshoppa/WorkshopPlugin.cs @@ -68,7 +68,7 @@ public sealed partial class WorkshopPlugin : IDalamudPlugin _configuration = (Configuration?)_pluginInterface.GetPluginConfig() ?? new Configuration(); _workshopCache = new WorkshopCache(dataManager); - _mainWindow = new(this, _pluginInterface, _clientState, _configuration, _workshopCache) { IsOpen = true }; + _mainWindow = new(this, _pluginInterface, _clientState, _configuration, _workshopCache); _windowSystem.AddWindow(_mainWindow); _pluginInterface.UiBuilder.Draw += _windowSystem.Draw;