cinder / TinderBox

TinderBox
14 stars 6 forks source link

tinderbox window is too small to choose a visual studio project on a 4k screen #11

Open richardeakin opened 8 years ago

richardeakin commented 8 years ago

From @vertgo on February 2, 2016 23:56

Using an UHD monitor, tinderbox won't let you generate a cinder project in windows 10 tinderbug

Copied from original issue: cinder/Cinder#1287

richardeakin commented 8 years ago

Also just to check, do you have any text scaling going on in display settings?

chaoticbob commented 7 years ago

DPI Scaling needs to be enable so Qt knows what to do on High DPI displays...this may be specific to Widnows, I haven't tested on macOS yet. The following line needs to go before QApplication in main.cpp:

QApplication::setAttribute(Qt::AA_EnableHighDpiScaling);

Qt needs to be 5.6 or later.