Skip to content

Commit

Permalink
that one loggoman feature
Browse files Browse the repository at this point in the history
  • Loading branch information
KoloInDaCrib committed Dec 13, 2024
1 parent 4af76e2 commit 7db76e8
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,13 @@ class AddAnimDialog extends DefaultPageDialog
}
}

charAnimFrameList.onChange = function(_) {
if (charAnimFrameList.selectedIndex == -1) return;
charAnimPrefix.text = charAnimFrameList.selectedItem.name;
}

charAnimDropdown.onChange = function(_) {
if (charAnimDropdown.selectedIndex == -1) // delele this shiz
if (charAnimDropdown.selectedIndex == -1) // delete this shiz
{
charAnimName.text = charAnimFrames.text = "";
charAnimLooped.selected = charAnimFlipX.selected = charAnimFlipY.selected = false;
Expand Down

0 comments on commit 7db76e8

Please sign in to comment.