summaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
authorKhaled Hosny <khaled@libreoffice.org>2023-07-08 22:42:12 +0300
committerMichael Stahl <michael.stahl@allotropia.de>2023-07-11 11:33:44 +0200
commiteb9b5ec7620f236243636cd94f517fc80006b95a (patch)
treede4c71aa14cbb991a89ee0a46e713e36ebd0ead3 /static
parent1e9e2ff5316a6d934205f1c01a57f80ef4e8657d (diff)
tdf#151273, tdf#151925: Don’t use QFont text layout by default
We were enabling QFont for qt5 VCL plugin by default, but it is buggy and some distributions seem to enabled qt5 VCL plugin even if we don't recommend it. Since the QFont code is incomplete and no one is working on it, lets make people’s life easier by making it always off by default. This removed the SAL_VCL_QT5_USE_CAIRO envvar and replaces it with SAL_VCL_QT_USE_QFONT that does the reverse. Also SAL_VCL_KF5_USE_QFONT is dropped in favor of SAL_VCL_QT_USE_QFONT. Change-Id: Id7471acd12fe277908f567140b63ae8d27b03033 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/154222 Tested-by: Jenkins Reviewed-by: خالد حسني <khaled@libreoffice.org> (cherry picked from commit f9b16330f13d3ad43de6de026206577bfa1ac85d) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/154184 Reviewed-by: Michael Weghorn <m.weghorn@posteo.de> (cherry picked from commit 14fe410e0ab90e95141613b77de48063f518d9bb) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/154256 Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
Diffstat (limited to 'static')
-rw-r--r--static/emscripten/environment.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/static/emscripten/environment.js b/static/emscripten/environment.js
index bc60fddcbbe3..7d04fd76b0f2 100644
--- a/static/emscripten/environment.js
+++ b/static/emscripten/environment.js
@@ -1,5 +1,4 @@
if (!('preRun' in Module)) Module['preRun'] = [];
Module.preRun.push(function() {
ENV.SAL_LOG = "+WARN"
- ENV.SAL_VCL_QT5_USE_CAIRO = "1"
});