fix: clear list of viewing plugins in installer when resorting

This commit is contained in:
goat 2023-07-30 22:11:00 +02:00
parent 509e33bf27
commit b75b30c03d
No known key found for this signature in database
GPG key ID: 49E2AA8C6A76498B

View file

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