https://bugs.winehq.org/show_bug.cgi?id=57175
--- Comment #19 from Rémi Bernon rbernon@codeweavers.com --- Yes, the line has been removed you need to add it back if you want all applications to be system DPI aware.
Change:
``` /* FIXME: what do the DpiScalingVer flags mean? */ get_dword_entry( (union sysparam_all_entry *)&entry_DPISCALINGVER, 0, &dpi_scaling, 0 ); ```
to:
``` /* FIXME: what do the DpiScalingVer flags mean? */ get_dword_entry( (union sysparam_all_entry *)&entry_DPISCALINGVER, 0, &dpi_scaling, 0 ); if (!dpi_scaling) NtUserSetProcessDpiAwarenessContext( NTUSER_DPI_PER_MONITOR_AWARE, 0 ); ```