Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/hakchi2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2017-10-06 05:58:08 +0300
committerAlexey 'Cluster' Avdyukhin <clusterrr@clusterrr.com>2017-10-06 05:58:08 +0300
commita45674adbbe6c83989c31b2d9192d729ce2c0ad2 (patch)
treeda2ce26c620ae75738ec3823fc5b2fee9c6669db /FoldersManagerForm.cs
parent2f3c36218b419b547f2166bd3a3d973246858e33 (diff)
CheckBoxList replaced with ListView, group actions added. Release candindate #2.
Diffstat (limited to 'FoldersManagerForm.cs')
-rw-r--r--FoldersManagerForm.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/FoldersManagerForm.cs b/FoldersManagerForm.cs
index 629f4ef7..8a75c8f2 100644
--- a/FoldersManagerForm.cs
+++ b/FoldersManagerForm.cs
@@ -846,10 +846,10 @@ namespace com.clusterrr.hakchi_gui
File.WriteAllText(FoldersXmlPath, TreeToXml());
if (mainForm != null)
{
- for (int i = 0; i < mainForm.checkedListBoxGames.Items.Count; i++)
+ for (int i = 1; i < mainForm.listViewGames.Items.Count; i++)
{
- if (deletedGames.Contains(mainForm.checkedListBoxGames.Items[i] as NesMiniApplication))
- mainForm.checkedListBoxGames.SetItemChecked(i, false);
+ if (deletedGames.Contains(mainForm.listViewGames.Items[i].Tag as NesMiniApplication))
+ mainForm.listViewGames.Items[i].Checked = false;
}
for (int i = 0; i < mainForm.checkedListBoxDefaultGames.Items.Count; i++)
{