mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-16 11:48:06 +01:00
[runner]Update Toast Notification Arrow - use Unicode character (#29229)
* "⇨" was "->" * Escape unicode character
This commit is contained in:
@@ -33,7 +33,7 @@ using namespace updating;
|
|||||||
std::wstring CurrentVersionToNextVersion(const new_version_download_info& info)
|
std::wstring CurrentVersionToNextVersion(const new_version_download_info& info)
|
||||||
{
|
{
|
||||||
auto result = VersionHelper{ VERSION_MAJOR, VERSION_MINOR, VERSION_REVISION }.toWstring();
|
auto result = VersionHelper{ VERSION_MAJOR, VERSION_MINOR, VERSION_REVISION }.toWstring();
|
||||||
result += L" -> ";
|
result += L" \u2192 "; // Right arrow
|
||||||
result += info.version.toWstring();
|
result += info.version.toWstring();
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user