We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3736cbb commit c8d24bbCopy full SHA for c8d24bb
1 file changed
Nodes/BaseHexCommentNode.cs
@@ -36,7 +36,8 @@ protected int AddComment(ViewInfo view, int x, int y, float fvalue, IntPtr ivalu
36
37
if (Program.Settings.ShowCommentPointer)
38
{
39
- x = AddText(view, x, y, Program.Settings.OffsetColor, HotSpot.NoneId, $"-> {namedAddress}") + view.Font.Width;
+ x = AddText(view, x, y, Program.Settings.OffsetColor, HotSpot.NoneId, "->") + view.Font.Width;
40
+ x = AddText(view, x, y, Program.Settings.OffsetColor, HotSpot.ReadOnlyId, namedAddress) + view.Font.Width;
41
}
42
43
if (Program.Settings.ShowCommentRtti)
0 commit comments