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:
authorStefanBruens <stefan.bruens@rwth-aachen.de>2020-12-08 16:53:48 +0300
committerGitHub <noreply@github.com>2020-12-08 16:53:48 +0300
commit8023bee35a952f0ca9b5dce7d2b6aa0faebef9ec (patch)
tree0443cfb4d19ca147cc67506fcbf5effb20e0b23b /cura_app.py
parentcaa9916cf00ec1c8daf15f1837da3a78e93c5a3c (diff)
Use 'default' theme instead of 'material'
Using 'material' causes some layout issues, while 'default' shows no such issues and also fixes the preview pane crashes.
Diffstat (limited to 'cura_app.py')
-rwxr-xr-xcura_app.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cura_app.py b/cura_app.py
index ad5f7b759d..4469098666 100755
--- a/cura_app.py
+++ b/cura_app.py
@@ -211,7 +211,7 @@ if Platform.isLinux() and getattr(sys, "frozen", False):
# When using the KDE qqc2-desktop-style, the UI layout is completely broken, and
# even worse, it crashes when switching to the "Preview" pane.
if Platform.isLinux():
- os.environ["QT_QUICK_CONTROLS_STYLE"] = "material"
+ os.environ["QT_QUICK_CONTROLS_STYLE"] = "default"
app = CuraApplication()
app.run()