fixed missing "plugins are loading" state in category view

This commit is contained in:
MgAl2O4 2021-09-29 22:45:54 -04:00
parent 6e2ca6a133
commit 70852791eb

View file

@ -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;
}