From 04886885929086dea6fa80c038efc6f372d6996a Mon Sep 17 00:00:00 2001 From: John Preston Date: Thu, 20 Jan 2022 11:19:45 +0300 Subject: [PATCH] Use '\' instead of '$' as a tags separator. --- ui/text/text_entity.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/text/text_entity.cpp b/ui/text/text_entity.cpp index 702b8f2..3d7c857 100644 --- a/ui/text/text_entity.cpp +++ b/ui/text/text_entity.cpp @@ -22,7 +22,7 @@ namespace TextUtilities { namespace { -constexpr auto kTagSeparator = '$'; +constexpr auto kTagSeparator = '\\'; using namespace Ui::Text;