mirror of https://github.com/aseprite/aseprite.git
Fix Flip command labels when assigning shortcuts (fix #2545)
This commit is contained in:
parent
6c4621a26a
commit
38d1b8a8e2
|
|
@ -252,9 +252,9 @@ std::string FlipCommand::onGetFriendlyName() const
|
|||
content = Strings::commands_Flip_Canvas();
|
||||
|
||||
if (m_flipType == doc::algorithm::FlipHorizontal)
|
||||
content = Strings::commands_Flip_Horizontally();
|
||||
orientation = Strings::commands_Flip_Horizontally();
|
||||
else
|
||||
content = Strings::commands_Flip_Vertically();
|
||||
orientation = Strings::commands_Flip_Vertically();
|
||||
|
||||
return fmt::format(getBaseFriendlyName(), content, orientation);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue