Fix ChangePixelFormatCommand label on keyboard shortcuts dialog when used without params

This commit is contained in:
David Capello 2017-12-13 17:19:00 -03:00
parent 9520dee00a
commit a938fcec7f
2 changed files with 3 additions and 0 deletions

View File

@ -197,6 +197,7 @@ ChangePixelFormat_Indexed = Indexed
ChangePixelFormat_Indexed_OrderedDithering = Indexed with Ordered Dithering
ChangePixelFormat_Indexed_OldDithering = Indexed with Old Dithering
ChangePixelFormat_Indexed = Indexed
ChangePixelFormat_MoreOptions = More Options
Clear = Clear
ClearCel = Clear Cel
CloseAllFiles = Close All Files

View File

@ -512,6 +512,8 @@ std::string ChangePixelFormatCommand::onGetFriendlyName() const
break;
}
}
else
conversion = Strings::commands_ChangePixelFormat_MoreOptions();
return fmt::format(getBaseFriendlyName(), conversion);
}