From 12d274ffcc48317512b518e3ec162b0604027935 Mon Sep 17 00:00:00 2001 From: Xjph Date: Thu, 25 Jan 2024 23:04:05 -0330 Subject: [PATCH] remove sorting from list views while reading all --- ObservatoryCore/UI/CoreForm.cs | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/ObservatoryCore/UI/CoreForm.cs b/ObservatoryCore/UI/CoreForm.cs index 9019222..fae7d39 100644 --- a/ObservatoryCore/UI/CoreForm.cs +++ b/ObservatoryCore/UI/CoreForm.cs @@ -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 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();