From c381b82ac1f9ea8155884189e97ee792262ed910 Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Tue, 9 Aug 2016 17:09:48 +0200 Subject: [PATCH] Extruder nr is now sent as string CURA-2071 --- resources/qml/SidebarSimple.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/resources/qml/SidebarSimple.qml b/resources/qml/SidebarSimple.qml index 0e1b04cdeb..a45037ff56 100644 --- a/resources/qml/SidebarSimple.qml +++ b/resources/qml/SidebarSimple.qml @@ -327,7 +327,8 @@ Item supportEnabled.setPropertyValue("value", false); } else { supportEnabled.setPropertyValue("value", true); - supportExtruderNr.setPropertyValue("value", index - 1); + // Send the extruder nr as a string. + supportExtruderNr.setPropertyValue("value", parseInt(index - 1) + ""); } } MouseArea {