From ad278c8a6d24e23c50cce22dbd2108d22d2e3dd8 Mon Sep 17 00:00:00 2001 From: Charlie Kindel Date: Sun, 7 Jun 2020 15:35:10 -0600 Subject: [PATCH] fix scrollview characters --- Terminal.Gui/ConsoleDrivers/WindowsDriver.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Terminal.Gui/ConsoleDrivers/WindowsDriver.cs b/Terminal.Gui/ConsoleDrivers/WindowsDriver.cs index 075cb8092..6397967e0 100644 --- a/Terminal.Gui/ConsoleDrivers/WindowsDriver.cs +++ b/Terminal.Gui/ConsoleDrivers/WindowsDriver.cs @@ -487,16 +487,16 @@ namespace Terminal.Gui { HLine = '\u2500'; VLine = '\u2502'; - Stipple = '\u2592'; - Diamond = '\u25c6'; + Stipple = '\u2591'; + Diamond = '\u25ca'; ULCorner = '\u250C'; LLCorner = '\u2514'; URCorner = '\u2510'; LRCorner = '\u2518'; LeftTee = '\u251c'; RightTee = '\u2524'; - TopTee = '\u22a4'; - BottomTee = '\u22a5'; + TopTee = '\u252c'; + BottomTee = '\u2534'; Checked = '\u221a'; UnChecked = ' '; Selected = '\u25cf';