From cd09717a641f68908bc931fd13ac67f5c5437c18 Mon Sep 17 00:00:00 2001 From: Joey de l'Arago Date: Wed, 8 Feb 2023 13:42:30 +0100 Subject: [PATCH] This onclick is already passed in where it is needed. It is being triggered unnecessarily when switching support extruder in recommended mode. CURA-10233 --- resources/qml/ExtruderButton.qml | 6 ------ 1 file changed, 6 deletions(-) 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) - } }