From 2b15d4275c3b7e62096dd6282e1b3a8569f98448 Mon Sep 17 00:00:00 2001 From: "dcone%netscape.com" Date: Wed, 3 May 2000 13:31:16 +0000 Subject: [PATCH] Fixed a bug with PatBlt and windows 95 and 98 --- gfx/src/windows/nsRenderingContextWin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gfx/src/windows/nsRenderingContextWin.cpp b/gfx/src/windows/nsRenderingContextWin.cpp index 3baa943c6b81..b983eaa2a29b 100644 --- a/gfx/src/windows/nsRenderingContextWin.cpp +++ b/gfx/src/windows/nsRenderingContextWin.cpp @@ -2838,7 +2838,7 @@ PRInt32 canRaster; if (PR_TRUE == gIsWIN95) { // windows 98 if((aWidth<8)&&(aHeight<8)){ - return PR_TRUE; + return PR_FALSE; // this does not seem to work on win 98 }else{ return PR_FALSE; }