From f307ffe8c0a30d90415c3ce9c3fe930cbc203aa2 Mon Sep 17 00:00:00 2001 From: Andy McFadden Date: Mon, 29 Oct 2018 12:58:09 -0700 Subject: [PATCH] Replace another instance of double-arrow glyph Change 80da6c replaced \u23e9 (black right-pointing double triangle) with a downward-pointing triangle, because it didn't render under Win7 or Linux. It was also being used in the "info" window. This change replaces that occurrence with a right-pointing triangle. --- SourceGen/AppForms/ProjectView.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SourceGen/AppForms/ProjectView.cs b/SourceGen/AppForms/ProjectView.cs index b6a7313..baaf1ba 100644 --- a/SourceGen/AppForms/ProjectView.cs +++ b/SourceGen/AppForms/ProjectView.cs @@ -4409,9 +4409,9 @@ namespace SourceGen.AppForms { string shortDesc = mOpDesc.GetShortDescription(op.Mnemonic); if (!string.IsNullOrEmpty(shortDesc)) { if (op.IsUndocumented) { - sb.Append("\u23e9[*] "); + sb.Append("\u25b6[*] "); } else { - sb.Append("\u23e9 "); + sb.Append("\u25b6 "); } sb.Append(shortDesc); string addrStr = mOpDesc.GetAddressModeDescription(op.AddrMode);