Alexandre Julliard (@julliard) commented about dlls/winewayland.drv/window.c:
} conf->state = window_state;
- conf->scale = NtUserGetDpiForWindow(data->hwnd) / 96.0;
}
This is not correct for DPI-aware apps. It should be something like `window_dpi / system_dpi` (or better, `window_dpi / monitor_dpi`, but we don't quite support per-monitor DPI yet).