From: Fabian Maurer Subject: [PATCH] shell32: Draw text on messageboxes without background Message-Id: <20170904174253.21160-1-dark.shadow4@web.de> Date: Mon, 4 Sep 2017 19:42:53 +0200 Fixes Bug 43658. Signed-off-by: Fabian Maurer --- dlls/shell32/shlfileop.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dlls/shell32/shlfileop.c b/dlls/shell32/shlfileop.c index 3c1806606a..8d4160d90c 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 */ -- 2.14.1