1
0
mirror of https://github.com/veracrypt/VeraCrypt.git synced 2025-11-11 11:08:02 -06:00

Windows: solve XP issue where the installer has missing/blacked out text boxes.

This commit is contained in:
Mounir IDRASSI
2015-01-03 00:27:31 +01:00
parent ad9b40d599
commit 8f5fd67ff3

View File

@@ -741,18 +741,6 @@ BOOL CALLBACK PageDialogProc (HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lPa
}
return 0;
case WM_CTLCOLORSTATIC:
/* This maintains the background under the transparent-backround texts */
SetBkMode ((HDC) wParam, TRANSPARENT);
return ((LONG) (HBRUSH) (GetStockObject (NULL_BRUSH)));
case WM_ERASEBKGND:
return 0;
}
return 0;