2
0
mirror of https://github.com/9ParsonsB/Pulsar.git synced 2025-04-05 17:39:39 -04:00

remove sorting from list views while reading all

This commit is contained in:
Xjph 2024-01-25 23:04:05 -03:30
parent 5e8ac004c7
commit 07ef51e640

View File

@ -226,10 +226,41 @@ namespace Observatory.UI
readAllDialogue.StartPosition = FormStartPosition.Manual;
readAllDialogue.Location = Point.Add(Location, new Size(100, 100));
SuspendDrawing(this);
SuspendSorting();
readAllDialogue.ShowDialog();
ResumeSorting();
ResumeDrawing(this);
}
private Dictionary<PluginListView, object> PluginComparer;
private void SuspendSorting()
{
PluginComparer = new();
foreach (var panel in uiPanels.Values)
{
foreach (var control in panel.Controls)
{
if (control?.GetType() == typeof(PluginListView))
{
var listView = (PluginListView)control;
PluginComparer.Add(listView, listView.ListViewItemSorter);
listView.ListViewItemSorter = null;
}
}
}
}
private void ResumeSorting()
{
if (PluginComparer?.Any() ?? false)
foreach (var panel in PluginComparer.Keys)
{
panel.ListViewItemSorter = (IObservatoryComparer)PluginComparer[panel];
}
PluginComparer?.Clear();
}
private void PopupNotificationLabel_Click(object _, EventArgs e)
{
CorePanel.SuspendLayout();