Compile on Windows
The SPI_FONTSMOOTHINGCONTRAST macro is not defined everywhere. When the code was refactored, the workaround for this was lost. This resubmits the work-around to make it compile. Reviewed-by: Samuel (cherry picked from commit 4c3630c1fcd2b3008f540a8906a19c533604f36a)
This commit is contained in:
parent
d8c6e2773f
commit
5bf2f85953
@ -656,7 +656,7 @@ static void qt_win_read_cleartype_settings()
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
int winSmooth;
|
int winSmooth;
|
||||||
if (SystemParametersInfo(SPI_GETFONTSMOOTHINGCONTRAST, 0, &winSmooth, 0)) {
|
if (SystemParametersInfo(0x200C /* SPI_GETFONTSMOOTHINGCONTRAST */, 0, &winSmooth, 0)) {
|
||||||
qt_fontsmoothing_gamma = winSmooth / qreal(1000.0);
|
qt_fontsmoothing_gamma = winSmooth / qreal(1000.0);
|
||||||
} else {
|
} else {
|
||||||
qt_fontsmoothing_gamma = 1.0;
|
qt_fontsmoothing_gamma = 1.0;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user