Jinoh Kang (@iamahuman) commented about programs/explorer/desktop.c:
HANDLE thread; DWORD id;
- SetThreadDpiAwarenessContext( DPI_AWARENESS_CONTEXT_PER_MONITOR_AWARE_V2 );
We already have dpiAware setting in manifest. I think it's confusing to set mutually inconsistent DPI awareness in two separate places.
I believe this should be just
``` <dpiAwareness xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">PerMonitorV2</dpiAwareness> ```
in explorer.manifest.
Also, in light of @julliard's comment, should we add this to other builtin programs like regedit?