Fix bug in FrameTagProperties when there is no tag to show

This commit is contained in:
David Capello 2015-03-11 10:18:13 -03:00
parent fd920eb85a
commit 922a485832

View File

@ -82,6 +82,9 @@ void FrameTagPropertiesCommand::onExecute(Context* context)
else
foundTag = get_shortest_tag(sprite, frame);
if (!foundTag)
return;
FrameTagWindow window(sprite, foundTag);
if (!window.show())
return;