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:
Ged Murphy 2007-01-05 18:16:32 +00:00
parent 66e877331a
commit 7de51b4bdd
2 changed files with 4 additions and 4 deletions

View file

@ -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);
}

View file

@ -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);