mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 01:29:38 -04:00
remove sorting from list views while reading all
This commit is contained in:
parent
5e8ac004c7
commit
07ef51e640
@ -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();
|
||||
|
Loading…
x
Reference in New Issue
Block a user