Changed the SelectPallete attribute for the forground from true to false, it will

now select a palette that is not a background palette.  r=rods b=25979
This commit is contained in:
dcone%netscape.com 2000-03-13 03:38:52 +00:00
Родитель 80aac37961
Коммит e48a73e9eb
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -2512,7 +2512,7 @@ PRBool nsWindow::ProcessMessage(UINT msg, WPARAM wParam, LPARAM lParam, LRESULT
mContext->GetPaletteInfo(palInfo);
if (palInfo.isPaletteDevice && palInfo.palette) {
HDC hDC = ::GetDC(mWnd);
HPALETTE hOldPal = ::SelectPalette(hDC, (HPALETTE)palInfo.palette, TRUE);
HPALETTE hOldPal = ::SelectPalette(hDC, (HPALETTE)palInfo.palette, FALSE);
// Realize the drawing palette
int i = ::RealizePalette(hDC);