mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-26 15:57:56 +01:00
Merge pull request #115 from Daniel-McCarthy/HexView-DisplayBugFix
Fixed HexView Display Offset Bug
This commit is contained in:
@@ -167,7 +167,7 @@ namespace Terminal.Gui {
|
||||
else
|
||||
SetAttribute (ColorScheme.Normal);
|
||||
|
||||
Driver.AddStr (offset >= n ? " " : string.Format ("{0:x2}", value));
|
||||
Driver.AddStr (offset >= n ? " " : string.Format ("{0:x2}", value));
|
||||
SetAttribute (ColorScheme.Normal);
|
||||
Driver.AddRune (' ');
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user