From f14ec5e9ae6fc5f3d9f80e2e4bb60b5961ac9d2b Mon Sep 17 00:00:00 2001 From: Slic3rPE Date: Fri, 28 Jan 2022 11:03:27 +0100 Subject: [PATCH] Command key sign in hints --- src/slic3r/GUI/HintNotification.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/HintNotification.cpp b/src/slic3r/GUI/HintNotification.cpp index 274c0a6168..14ebbc6a05 100644 --- a/src/slic3r/GUI/HintNotification.cpp +++ b/src/slic3r/GUI/HintNotification.cpp @@ -344,7 +344,7 @@ void HintDatabase::load_hints_from_file(const boost::filesystem::path& path) unescape_string_cstyle(dict["text"], fulltext); fulltext = _utf8(fulltext); #ifdef __APPLE__ - boost::replace_all(fulltext, "Ctrl", "Cmd"); + boost::replace_all(fulltext, "Ctrl+", "⌘"); #endif //__APPLE__ // replace and for imgui markers std::string marker_s(1, ImGui::ColorMarkerStart);