Changed widget rendering mode default from partial-gfx to gfx for Linux and WIN32.

This commit is contained in:
kmcclusk%netscape.com 1999-09-09 19:43:27 +00:00
parent a29ca16fcf
commit 541c8bfb5d
2 changed files with 10 additions and 0 deletions

View File

@ -70,7 +70,12 @@ nsPresContext::nsPresContext()
nsLayoutAtoms::AddRefAtoms();
mCompatibilityMode = eCompatibility_Standard;
mCompatibilityLocked = PR_FALSE;
#ifdef XP_MAC
//XXX This remains partial gfx for Mac until all Mac gfx blockers are fixed
mWidgetRenderingMode = eWidgetRendering_PartialGfx;
#else
mWidgetRenderingMode = eWidgetRendering_Gfx;
#endif
#ifdef _WIN32

View File

@ -70,7 +70,12 @@ nsPresContext::nsPresContext()
nsLayoutAtoms::AddRefAtoms();
mCompatibilityMode = eCompatibility_Standard;
mCompatibilityLocked = PR_FALSE;
#ifdef XP_MAC
//XXX This remains partial gfx for Mac until all Mac gfx blockers are fixed
mWidgetRenderingMode = eWidgetRendering_PartialGfx;
#else
mWidgetRenderingMode = eWidgetRendering_Gfx;
#endif
#ifdef _WIN32