Is there a way to change it?
Yes, you can customize almost everything, look at the styling help patches for ImGui. “How to Use Custom Fonts” might be a good point to start.
@tonfilm I came to ask the exact same question, and if its in the help patches it really isn’t obvious. In how to Use Custom Fonts it gives an example
2 Likes
thanks!
What is really kind of limiting in ImGui is that you cannot really change the font size on the fly. The styles have to be created on Create. I needed text size to be adaptable so I created font styles in a Repeat region and created like 10 different sizes, which I can then switch between on the fly.
1 Like