mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-20 21:27:50 -06:00
Revert "Make all settingitems async"
This reverts commit d1afc63902
.
It creates a problem in Windows where settings with dropdown menus
do no load anymore.
This commit is contained in:
parent
5bc6f5510f
commit
e9da3b7e9a
1 changed files with 4 additions and 1 deletions
|
@ -265,7 +265,10 @@ Item
|
||||||
property var globalPropertyProvider: inheritStackProvider
|
property var globalPropertyProvider: inheritStackProvider
|
||||||
property bool externalResetHandler: false
|
property bool externalResetHandler: false
|
||||||
|
|
||||||
asynchronous: true
|
//Qt5.4.2 and earlier has a bug where this causes a crash: https://bugreports.qt.io/browse/QTBUG-35989
|
||||||
|
//In addition, while it works for 5.5 and higher, the ordering of the actual combo box drop down changes,
|
||||||
|
//causing nasty issues when selecting different options. So disable asynchronous loading of enum type completely.
|
||||||
|
asynchronous: model.type !== "enum" && model.type !== "extruder" && model.type !== "optional_extruder"
|
||||||
active: model.type !== undefined
|
active: model.type !== undefined
|
||||||
|
|
||||||
source:
|
source:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue