diff --git a/src/runner/UpdateUtils.cpp b/src/runner/UpdateUtils.cpp index 6edde793c7..c5f74e31ef 100644 --- a/src/runner/UpdateUtils.cpp +++ b/src/runner/UpdateUtils.cpp @@ -33,7 +33,7 @@ using namespace updating; std::wstring CurrentVersionToNextVersion(const new_version_download_info& info) { auto result = VersionHelper{ VERSION_MAJOR, VERSION_MINOR, VERSION_REVISION }.toWstring(); - result += L" -> "; + result += L" \u2192 "; // Right arrow result += info.version.toWstring(); return result; }