From b75b30c03d04cf815c78cefcc2ff56f9499b3bdb Mon Sep 17 00:00:00 2001 From: goat Date: Sun, 30 Jul 2023 22:11:00 +0200 Subject: [PATCH] fix: clear list of viewing plugins in installer when resorting --- .../Windows/PluginInstaller/PluginInstallerWindow.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Dalamud/Interface/Internal/Windows/PluginInstaller/PluginInstallerWindow.cs b/Dalamud/Interface/Internal/Windows/PluginInstaller/PluginInstallerWindow.cs index 4e27d50bd..4ed25c9e1 100644 --- a/Dalamud/Interface/Internal/Windows/PluginInstaller/PluginInstallerWindow.cs +++ b/Dalamud/Interface/Internal/Windows/PluginInstaller/PluginInstallerWindow.cs @@ -569,7 +569,12 @@ internal class PluginInstallerWindow : Window, IDisposable this.filterText = selectable.Localization; lock (this.listLock) + { this.ResortPlugins(); + + // Positions of plugins within the list is likely to change + this.openPluginCollapsibles.Clear(); + } } }