When running a script to test various color combinations, I'm getting the following display.
Note the capital B's in the very first output line:
"--- Black / Bright Black background -----------------------"
Also, note the final k in the word "Black" at the beginning of the detail display lines.
I can't figure out if those characters are in a different font, or if there is some sort of effect added to those characters, but they definitely don't look right.
There are others too sprinkled throughout the display- for example, the b in "bri White" at the end of the detail display lines.
Here's the script I am running. Can anyone else out there duplicate this issue, or is it a me problem?
EDIT: I tried changing the font used and different characters had display issues. When I changed the font back the original problem characters had issues again.
EDIT2: Disabling Command Output Folding returns to displaying characters normally. Enabling it distorts them again, even without a restart of Take Command.
-----------
TCMD Version 36.50.68
TCC 36.50.68 x64 Windows 11 [Version 10.0.26200.8655]
_ConPTY: 1 (Yes)
Note the capital B's in the very first output line:
"--- Black / Bright Black background -----------------------"
Also, note the final k in the word "Black" at the beginning of the detail display lines.
I can't figure out if those characters are in a different font, or if there is some sort of effect added to those characters, but they definitely don't look right.
There are others too sprinkled throughout the display- for example, the b in "bri White" at the end of the detail display lines.
Here's the script I am running. Can anyone else out there duplicate this issue, or is it a me problem?
Code:
@echo off
setlocal
do BG in /L Black Blue Green Cyan Red Magenta Yellow White
echo.
echo `---` %BG `/` Bright %BG background `-----------------------`
REM Line1: Write all colors in normal and bright FG on *normal* background
do FG in /L Black Blue Green Cyan Red Magenta Yellow White
scrput /U +0 +0 %FG on %BG `|`%FG`` & scrput /U +0 +0 bright %FG on %BG `|`bri %FG``
enddo
echo.
REM Line2: Write all colors in normal and bright FG on *bright* background
do FG in /L Black Blue Green Cyan Red Magenta Yellow White
scrput /U +0 +0 %FG on bri %BG `|`%FG`` & scrput /U +0 +0 bright %FG on bri %BG `|`bri %FG``
enddo
echo.
enddo
quit
EDIT: I tried changing the font used and different characters had display issues. When I changed the font back the original problem characters had issues again.
EDIT2: Disabling Command Output Folding returns to displaying characters normally. Enabling it distorts them again, even without a restart of Take Command.
-----------
TCMD Version 36.50.68
TCC 36.50.68 x64 Windows 11 [Version 10.0.26200.8655]
_ConPTY: 1 (Yes)
Last edited: