From 1b9048f17ad96f6465686eb082b6f36c4680ea98 Mon Sep 17 00:00:00 2001 From: David Capello Date: Mon, 9 Jul 2012 18:41:32 -0300 Subject: [PATCH] Fix frame number shown in FrameProperties. --- src/commands/cmd_frame_properties.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/cmd_frame_properties.cpp b/src/commands/cmd_frame_properties.cpp index 4c0fcd8d5..c155344a6 100644 --- a/src/commands/cmd_frame_properties.cpp +++ b/src/commands/cmd_frame_properties.cpp @@ -112,7 +112,7 @@ void FramePropertiesCommand::onExecute(Context* context) if (m_target == ALL_FRAMES) frame->setText("All"); else - frame->setTextf("%d", (int)sprite_frame); + frame->setTextf("%d", (int)sprite_frame+1); frlen->setTextf("%d", sprite->getFrameDuration(sprite->getCurrentFrame()));