cancel
Showing results for 
Search instead for 
Did you mean: 

Stm32Cube IDE character spacing not consistent

JBonn
Associate III

Running STM32CubeIDE versions 1.18.1 and 1.19.0

i

static char *Audio3D[] = { // Main Settings display

"THERE ARE 15 VOLUME ",

IDE version 1.18.1 displays a 21 character line of code with the quotes one ontop of the other.

static char *Temp2D[] = {

" TEMPERATURE ",

" CELSIUS ",

" FAHRENHEIT "

};

 

IDE version 1.19.0 displays a 21 character line of code with the quotes not lined up

Makes it extremely hard to see if hundreds of lines of code are all 21 characters.

static char *Temp2D[] = {

" TEMPERATURE ",

" CELSIUS ",

" FAHRENHEIT "

};

 

1 REPLY 1
TDK
Super User

> quotes one ontop of the other.

> quotes not lined up

Maybe a screenshot would be more descriptive here, yes?

Check that the file is pure UTF-8 characters and encoding is set correctly. Font is monospaced, should display the file contents accurately.

If you feel a post has answered your question, please click "Accept as Solution".