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

Revert "Revert "Enable the new text layout engine by default""

This reverts commit 39501668.

Change-Id: Ie22a99885a23d44a9870fcd286bee4ccf10c53ac
Reviewed-on: https://gerrit.libreoffice.org/30505Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarKhaled Hosny <khaledhosny@eglug.org>
üst c8be4588
......@@ -6,7 +6,7 @@ SAL_USE_VCLPLUGIN - use a VCL plugin
SAL_NO_NWF - disable native widgets
SAL_FORCEDPI - force a specific DPI (gtk & gtk3 plugins only)
SAL_FORCE_HC - force high-contrast mode
SAL_USE_COMMON_LAYOUT - use CommonSalLayout layout engine for text layout
SAL_NO_COMMON_LAYOUT - disable 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_FORCE_ENABLE - enable double buffered painting
......
......@@ -770,7 +770,7 @@ bool SalLayout::IsSpacingGlyph( sal_GlyphId nGlyph )
bool SalLayout::UseCommonLayout()
{
static bool bUse = getenv("SAL_USE_COMMON_LAYOUT") != nullptr;
static bool bUse = getenv("SAL_NO_COMMON_LAYOUT") == nullptr;
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