Skip to content

Commit 66f40fd

Browse files
committed
Fixed incorrect cast in Color Data Transfer util form
1 parent 666b857 commit 66f40fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ff-utils-winforms/Forms/Utils/UtilsColorDataForm.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ private void UtilsColorDataForm_Shown(object sender, EventArgs e)
7878
}
7979
else
8080
{
81-
foreach (FileListEntry entry in fileList.Items)
81+
foreach (FileListEntry entry in fileList.Items.Cast<ListViewItem>().Select(x => (FileListEntry)x.Tag))
8282
{
8383
sourceVideo.Items.Add(entry.File);
8484
targetVideo.Items.Add(entry.File);

0 commit comments

Comments
 (0)