From c7525719d534bb6ebf9cbe85a86780b678cec4ed Mon Sep 17 00:00:00 2001 From: Kostas Karmas Date: Tue, 11 Aug 2020 11:18:37 +0200 Subject: [PATCH] Fix wrong filtering in Marketplace when pressing Back It was trying to apply a wrong filter, which was causing a slowdown. It is now applying the correct filter. Fixes https://github.com/Ultimaker/Cura/issues/8161 CURA-7649 --- plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml b/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml index dba9f19ccd..cbf48fc57f 100644 --- a/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml +++ b/plugins/Toolbox/resources/qml/components/ToolboxBackColumn.qml @@ -48,7 +48,7 @@ Item onClicked: { toolbox.viewPage = "overview" - toolbox.filterModelByProp("packages", "type", toolbox.viewCategory) + toolbox.filterModelByProp("packages", "package_types", toolbox.viewCategory) } style: ButtonStyle {