From: Alex Henrie <alexhenrie24(a)gmail.com> When you click "Emulate a virtual desktop" in winecfg, it creates a desktop named "Default". The name "Default" should not be displayed to the user for two reasons: First, it clutters the user interface with useless information, and second, it is always in English and is not translatable. --- programs/explorer/desktop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/programs/explorer/desktop.c b/programs/explorer/desktop.c index 9f3170a844e..8ff3d412b2b 100644 --- a/programs/explorer/desktop.c +++ b/programs/explorer/desktop.c @@ -1105,7 +1105,7 @@ static void set_desktop_window_title( HWND hwnd, const WCHAR *name ) LoadStringW( NULL, IDS_DESKTOP_TITLE, desktop_titleW, ARRAY_SIZE(desktop_titleW) ); - if (!name[0]) + if (!name[0] || !wcscmp( name, L"Default" )) { SetWindowTextW( hwnd, desktop_titleW ); return; -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/6382