From 6989aabff5d9902e9587a26bd0d2c037c2ee22af Mon Sep 17 00:00:00 2001 From: Tim Date: Tue, 11 Oct 2022 14:43:34 +0200 Subject: [PATCH] Fix startup on Zorin OS First unset QT_STYLE_OVERRIDE then start Cura --- packaging/AppImage/AppRun | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packaging/AppImage/AppRun b/packaging/AppImage/AppRun index d2beac8745..14ee0e4d8e 100644 --- a/packaging/AppImage/AppRun +++ b/packaging/AppImage/AppRun @@ -13,8 +13,8 @@ export QT_XKB_CONFIG_ROOT=/usr/share/X11/xkb # Use the openssl.cnf packaged in the AppImage 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 +unset QT_STYLE_OVERRIDE + +$scriptdir/Ultimaker-Cura "$@"