mirror of
https://github.com/reactos/reactos.git
synced 2025-01-13 01:22:03 +00:00
comment out monitor blits until I (or someone else) gets around to writing a custom control to take changes of dialog units into account.
svn path=/trunk/; revision=25310
This commit is contained in:
parent
66e877331a
commit
7de51b4bdd
2 changed files with 4 additions and 4 deletions
|
@ -720,11 +720,11 @@ BackgroundPageProc(HWND hwndDlg,
|
|||
|
||||
hdcMem = CreateCompatibleDC(hdc);
|
||||
SelectObject(hdcMem, pGlobalData->hBitmap);
|
||||
|
||||
/*
|
||||
TransparentBlt(hdc, 98, 0,
|
||||
pGlobalData->cxSource, pGlobalData->cySource, hdcMem, 0, 0,
|
||||
pGlobalData->cxSource, pGlobalData->cySource, 0xFF80FF);
|
||||
|
||||
*/
|
||||
DeleteDC(hdcMem);
|
||||
EndPaint(hwndDlg, &ps);
|
||||
}
|
||||
|
|
|
@ -601,13 +601,13 @@ SettingsPageProc(IN HWND hwndDlg, IN UINT uMsg, IN WPARAM wParam, IN LPARAM lPar
|
|||
|
||||
hdcMem = CreateCompatibleDC(hdc);
|
||||
SelectObject(hdcMem, pGlobalData->hBitmap);
|
||||
|
||||
/*
|
||||
TransparentBlt(hdc, 98, 0,
|
||||
pGlobalData->cxSource,
|
||||
pGlobalData->cySource, hdcMem, 0, 0,
|
||||
pGlobalData->cxSource,
|
||||
pGlobalData->cySource, 0xFF80FF);
|
||||
|
||||
*/
|
||||
DeleteDC(hdcMem);
|
||||
EndPaint(hwndDlg, &ps);
|
||||
|
||||
|
|
Loading…
Reference in a new issue