Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorc.lamboo <casperlamboo@gmail.com>2022-07-11 01:05:15 +0300
committerc.lamboo <casperlamboo@gmail.com>2022-07-11 01:05:15 +0300
commit19d62da737dead7e2957703872bd5ecc038ac29e (patch)
treed7e4b150acf6ae038216a87c2aa7aa4f82255bc4 /packaging
parentdb67c1f66afb4402492ad4192be51c74e8676068 (diff)
Possible fix for Cura crashing on Zorin OS 16
Appearently the `QT_STYLE_OVERRIDE` variable is set for some users, crashing Cura. Unset variable `QT_STYLE_OVERRIDE` as a precaution https://github.com/Ultimaker/Cura/issues/12343
Diffstat (limited to 'packaging')
-rw-r--r--packaging/AppImage/AppRun4
1 files changed, 4 insertions, 0 deletions
diff --git a/packaging/AppImage/AppRun b/packaging/AppImage/AppRun
index 5a134fa12d..d2beac8745 100644
--- a/packaging/AppImage/AppRun
+++ b/packaging/AppImage/AppRun
@@ -14,3 +14,7 @@ export QT_XKB_CONFIG_ROOT=/usr/share/X11/xkb
export OPENSSL_CONF="$scriptdir/openssl.cnf"
$scriptdir/Ultimaker-Cura "$@"
+
+# If this variable is set on Zorin OS 16 Cura would crash
+# unset `QT_STYLE_OVERRIDE` as a precaution
+unset QT_STYLE_OVERRIDE \ No newline at end of file