Kaydet (Commit) 39501668 authored tarafından Khaled Hosny's avatar Khaled Hosny

Revert "Enable the new text layout engine by default"

This reverts commit d79f43d0.

Breaks MacOSX tinderbox, need to figure out why a totally unrelated test
is broken.
üst e31f7f4c
...@@ -6,7 +6,7 @@ SAL_USE_VCLPLUGIN - use a VCL plugin ...@@ -6,7 +6,7 @@ SAL_USE_VCLPLUGIN - use a VCL plugin
SAL_NO_NWF - disable native widgets SAL_NO_NWF - disable native widgets
SAL_FORCEDPI - force a specific DPI (gtk & gtk3 plugins only) SAL_FORCEDPI - force a specific DPI (gtk & gtk3 plugins only)
SAL_FORCE_HC - force high-contrast mode SAL_FORCE_HC - force high-contrast mode
SAL_NO_COMMON_LAYOUT - disable CommonSalLayout layout engine for text layout SAL_USE_COMMON_LAYOUT - use CommonSalLayout layout engine for text layout
VCL_DOUBLEBUFFERING_AVOID_PAINT - don't paint the buffer, useful to see where we do direct painting VCL_DOUBLEBUFFERING_AVOID_PAINT - don't paint the buffer, useful to see where we do direct painting
VCL_DOUBLEBUFFERING_FORCE_ENABLE - enable double buffered painting VCL_DOUBLEBUFFERING_FORCE_ENABLE - enable double buffered painting
......
...@@ -770,7 +770,7 @@ bool SalLayout::IsSpacingGlyph( sal_GlyphId nGlyph ) ...@@ -770,7 +770,7 @@ bool SalLayout::IsSpacingGlyph( sal_GlyphId nGlyph )
bool SalLayout::UseCommonLayout() bool SalLayout::UseCommonLayout()
{ {
static bool bUse = getenv("SAL_NO_COMMON_LAYOUT") == nullptr; static bool bUse = getenv("SAL_USE_COMMON_LAYOUT") != nullptr;
return bUse; return bUse;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment