From dda7065bee7272642e2d6b8d3739ec3fa9441036 Mon Sep 17 00:00:00 2001 From: James Tabor Date: Wed, 6 Sep 2017 05:33:35 +0000 Subject: [PATCH] [Shell32] - Patch by Fabian Maurer : Draw text on message boxes without background. - Fixes CORE-13742. svn path=/trunk/; revision=75770 --- reactos/dll/win32/shell32/shlfileop.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/reactos/dll/win32/shell32/shlfileop.cpp b/reactos/dll/win32/shell32/shlfileop.cpp index 92690ea7cf3..4dfd44f7810 100644 --- a/reactos/dll/win32/shell32/shlfileop.cpp +++ b/reactos/dll/win32/shell32/shlfileop.cpp @@ -130,6 +130,7 @@ static INT_PTR ConfirmMsgBox_Paint(HWND hDlg) BeginPaint(hDlg, &ps); hdc = ps.hdc; + SetBkMode(hdc, TRANSPARENT); GetClientRect(GetDlgItem(hDlg, IDC_YESTOALL_MESSAGE), &r); /* this will remap the rect to dialog coords */