From dcfa2efc94915191384eac75613e4772a8a4dc59 Mon Sep 17 00:00:00 2001 From: David Capello Date: Mon, 12 Mar 2018 13:58:19 -0300 Subject: [PATCH] Fix SetColorSelector command label in keyboard preferences --- src/app/commands/cmd_set_color_selector.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/commands/cmd_set_color_selector.cpp b/src/app/commands/cmd_set_color_selector.cpp index 55f226588..56d5d9ec7 100644 --- a/src/app/commands/cmd_set_color_selector.cpp +++ b/src/app/commands/cmd_set_color_selector.cpp @@ -91,7 +91,7 @@ std::string SetColorSelectorCommand::onGetFriendlyName() const type = Strings::commands_SetColorSelector_NormalMapWheel(); break; } - return fmt::format(getBaseFriendlyName(), type); + return fmt::format(getBaseFriendlyName() + ": {0}", type); } Command* CommandFactory::createSetColorSelectorCommand()