From 755f49d7c4765c792da2c0b776300b4616f7bef4 Mon Sep 17 00:00:00 2001 From: Fabian Maurer Date: Mon, 4 Sep 2017 19:42:53 +0200 Subject: [PATCH] shell32: Draw text on message boxes without background. Signed-off-by: Fabian Maurer Signed-off-by: Alexandre Julliard --- dlls/shell32/shlfileop.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dlls/shell32/shlfileop.c b/dlls/shell32/shlfileop.c index 3c1806606af..8d4160d90c5 100644 --- a/dlls/shell32/shlfileop.c +++ b/dlls/shell32/shlfileop.c @@ -122,6 +122,7 @@ static INT_PTR ConfirmMsgBox_Paint(HWND hDlg) BeginPaint(hDlg, &ps); hdc = ps.hdc; + SetBkMode(hdc, TRANSPARENT); GetClientRect(GetDlgItem(hDlg, IDD_MESSAGE), &r); /* this will remap the rect to dialog coords */