From 7de51b4bddbc627596668e6a1a53f4fca2f75fa5 Mon Sep 17 00:00:00 2001 From: Ged Murphy Date: Fri, 5 Jan 2007 18:16:32 +0000 Subject: [PATCH] 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 --- reactos/dll/cpl/desk/background.c | 4 ++-- reactos/dll/cpl/desk/settings.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/reactos/dll/cpl/desk/background.c b/reactos/dll/cpl/desk/background.c index 7012ec6a339..ac7efcd774e 100644 --- a/reactos/dll/cpl/desk/background.c +++ b/reactos/dll/cpl/desk/background.c @@ -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); } diff --git a/reactos/dll/cpl/desk/settings.c b/reactos/dll/cpl/desk/settings.c index 9fd8b158de7..7553da25fb1 100644 --- a/reactos/dll/cpl/desk/settings.c +++ b/reactos/dll/cpl/desk/settings.c @@ -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);