diff --git a/cura/ApplicationMetadata.py b/cura/ApplicationMetadata.py index fd8f3c704c..3e0b0290aa 100644 --- a/cura/ApplicationMetadata.py +++ b/cura/ApplicationMetadata.py @@ -14,7 +14,7 @@ DEFAULT_CURA_LATEST_URL = "https://software.ultimaker.com/latest.json" # Each release has a fixed SDK version coupled with it. It doesn't make sense to make it configurable because, for # example Cura 3.2 with SDK version 6.1 will not work. So the SDK version is hard-coded here and left out of the # CuraVersion.py.in template. -CuraSDKVersion = "8.2.0" +CuraSDKVersion = "8.3.0" try: from cura.CuraVersion import CuraLatestURL diff --git a/resources/qml/ExtruderButton.qml b/resources/qml/ExtruderButton.qml index 9a760bafc9..5d1767b56c 100644 --- a/resources/qml/ExtruderButton.qml +++ b/resources/qml/ExtruderButton.qml @@ -22,10 +22,4 @@ UM.ToolbarButton font: extruderNumberFont property int index: extruder.index } - - onClicked: - { - forceActiveFocus() //First grab focus, so all the text fields are updated - CuraActions.setExtruderForSelection(extruder.id) - } }