From 8501d4b7e0913618401f7003cf252b4332fa5a2f Mon Sep 17 00:00:00 2001 From: MattNL Date: Fri, 2 Jun 2023 15:42:04 -0400 Subject: [PATCH] Changed text to display ticks instead of frames --- PCK-Studio/Forms/Editor/AnimationEditor.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PCK-Studio/Forms/Editor/AnimationEditor.cs b/PCK-Studio/Forms/Editor/AnimationEditor.cs index 6853633f..797517a2 100644 --- a/PCK-Studio/Forms/Editor/AnimationEditor.cs +++ b/PCK-Studio/Forms/Editor/AnimationEditor.cs @@ -78,7 +78,7 @@ namespace PckStudio.Forms.Editor foreach (var frame in currentAnimation.GetFrames()) { var imageIndex = currentAnimation.GetTextureIndex(frame.Texture); - frameTreeView.Nodes.Add(new TreeNode($"for {frame.Ticks} frames") + frameTreeView.Nodes.Add(new TreeNode($"for {frame.Ticks} ticks") { ImageIndex = imageIndex, SelectedImageIndex = imageIndex,