1
0
mirror of synced 2024-11-30 18:24:39 +01:00

Fix selecting a list item in texture pattern editor

This commit is contained in:
KillzXGaming 2019-07-11 17:35:23 -04:00
parent f14bcfe536
commit 7fddf179f6
3 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -561,7 +561,7 @@ namespace FirstPlugin.Forms
int Index = listViewCustom1.SelectedIndices[0];
int SelectedFrame = KeyFrames[Index];
var ListItem = listViewCustom1.SelectedItems[Index];
var ListItem = listViewCustom1.SelectedItems[0];
}