Module: wine Branch: stable Commit: 69ef32e9427ae3d5e7ac5323661fd4767ed3b3fe URL: https://source.winehq.org/git/wine.git/?a=commit;h=69ef32e9427ae3d5e7ac53236...
Author: Fabian Maurer dark.shadow4@web.de Date: Mon Sep 4 19:42:53 2017 +0200
shell32: Draw text on message boxes without background.
Signed-off-by: Fabian Maurer dark.shadow4@web.de Signed-off-by: Alexandre Julliard julliard@winehq.org (cherry picked from commit 755f49d7c4765c792da2c0b776300b4616f7bef4) Signed-off-by: Michael Stefaniuc mstefani@winehq.org
---
dlls/shell32/shlfileop.c | 1 + 1 file changed, 1 insertion(+)
diff --git a/dlls/shell32/shlfileop.c b/dlls/shell32/shlfileop.c index 3c18066..8d4160d 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 */