How to restore letter spacing of 2.8.12 in 3.0.2? Topic is solved

If you are using the main C++ distribution of wxWidgets, Feel free to ask any question related to wxWidgets development here. This means questions regarding to C++ and wxWidgets, not compile problems.
Post Reply
Tapsa
Earned some good credits
Earned some good credits
Posts: 147
Joined: Tue Dec 06, 2011 5:52 pm
Location: Helsinki

How to restore letter spacing of 2.8.12 in 3.0.2?

Post by Tapsa »

Is there a method to change the letter spacing all over my application?
Image
User avatar
T-Rex
Moderator
Moderator
Posts: 1249
Joined: Sat Oct 23, 2004 9:58 am
Location: Zaporizhzhya, Ukraine
Contact:

Re: How to restore letter spacing of 2.8.12 in 3.0.2?

Post by T-Rex »

What OS are you using?
On Windows you can try the different manifest (if you are using the manifest which comes with wx distro then try to use the default one from VS linker settings and vise versa).
Tapsa
Earned some good credits
Earned some good credits
Posts: 147
Joined: Tue Dec 06, 2011 5:52 pm
Location: Helsinki

Re: How to restore letter spacing of 2.8.12 in 3.0.2?

Post by Tapsa »

I am using Win 10 now and building with Mingw-builds 5.3.0. How can I use the manifest that came with wx 2.8.12?
User avatar
doublemax
Moderator
Moderator
Posts: 19160
Joined: Fri Apr 21, 2006 8:03 pm
Location: $FCE2

Re: How to restore letter spacing of 2.8.12 in 3.0.2?

Post by doublemax »

I'm not sure that's a manifest problem. Executables with missing manifest look very different (= ugly), that's hard to miss.

I have a faint memory that wx3.x uses a bigger default gui font, but i can't find a post on the mailing list anywhere, so i'm not 100% sure about it, maybe i mix that up with something else.

If that's the case and you *really* want the same font size, you could set it yourself. If you set it to a wxFrame before creating any children, they should all inherit that font.
Use the source, Luke!
Tapsa
Earned some good credits
Earned some good credits
Posts: 147
Joined: Tue Dec 06, 2011 5:52 pm
Location: Helsinki

Re: How to restore letter spacing of 2.8.12 in 3.0.2?

Post by Tapsa »

Thanks, doublemax.
Changing default font point size from 9 to 8 on my frames and dialogues did pretty much what I wanted.
Post Reply