Merge pull request #16884 from Ultimaker/CURA-11048-unclear-support-type

Cura 11048 unclear support type
This commit is contained in:
Casper Lamboo 2023-10-05 09:46:56 +02:00 committed by GitHub
commit 2a8a4ad301
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -56,6 +56,9 @@ class CuraFormulaFunctions:
if isinstance(value, SettingFunction):
value = value(extruder_stack, context = context)
if isinstance(value, str):
value = value.lower()
return value
def _getActiveExtruders(self, context: Optional["PropertyEvaluationContext"] = None) -> List[str]: