Gallo
#1
hello,
i am using Qtcreator under OSX El Capitan on a macbookpro Retina.
the app is running fine but doesn’t seem qtcreator takes care about high pixel density so the app window and Gui are smaller than they should.
Building the app with xcode is ok.
is there a way to specify HiDPI option when compiling under qtcreator ?
thanks a lot
tactif
#2
Gallo
#3
thanks for the tip !
i tried the latest nightly but with no luck
i tried to force it
Properties{
condition: qbs.buildVariant.contains("debug") && platform === "osx"
bundle.infoPlist: ({"CFBundleIconFile":"icon-debug.icns", "NSHighResolutionCapable":true})
}
Properties{
condition: qbs.buildVariant.contains("release") && platform === "osx"
bundle.infoPlist: ({"CFBundleIconFile":"icon.icns", "NSHighResolutionCapable":true})
}
but doesn’t work either
tactif
#4
Dunno for the nighly build but this sure works well on 0.9.4
Gallo
#5
ok. Then i will try the github master branch.
thanks a lot