From 70852791eb8f0d66bc96c97648ffd368b5c6c802 Mon Sep 17 00:00:00 2001 From: MgAl2O4 <51430403+MgAl2O4@users.noreply.github.com> Date: Wed, 29 Sep 2021 22:45:54 -0400 Subject: [PATCH] fixed missing "plugins are loading" state in category view --- Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs b/Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs index cc6f9d323..ba95fe623 100644 --- a/Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs +++ b/Dalamud/Interface/Internal/Windows/PluginInstallerWindow.cs @@ -701,7 +701,8 @@ namespace Dalamud.Interface.Internal.Windows private void DrawPluginCategoryContent() { - if (!this.categoryManager.IsSelectionValid) + var ready = this.DrawPluginListLoading(); + if (!this.categoryManager.IsSelectionValid || !ready) { return; }