Commit 755f49d7 authored by Fabian Maurer's avatar Fabian Maurer Committed by Alexandre Julliard

shell32: Draw text on message boxes without background.

parent 0b1d7ff7
...@@ -122,6 +122,7 @@ static INT_PTR ConfirmMsgBox_Paint(HWND hDlg) ...@@ -122,6 +122,7 @@ static INT_PTR ConfirmMsgBox_Paint(HWND hDlg)
BeginPaint(hDlg, &ps); BeginPaint(hDlg, &ps);
hdc = ps.hdc; hdc = ps.hdc;
SetBkMode(hdc, TRANSPARENT);
GetClientRect(GetDlgItem(hDlg, IDD_MESSAGE), &r); GetClientRect(GetDlgItem(hDlg, IDD_MESSAGE), &r);
/* this will remap the rect to dialog coords */ /* this will remap the rect to dialog coords */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment