From dbb2bce15719dfe20b4f304fe5591494ea20fcf4 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Tue, 18 Jan 2022 17:19:52 +0100 Subject: [PATCH] Fix icon name with Controls 2 action The text above this icon name got changed in master, which led to a minor merge conflict here that wasn't discovered. --- resources/qml/Actions.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/qml/Actions.qml b/resources/qml/Actions.qml index effbf1bea3..4e2a05a6aa 100644 --- a/resources/qml/Actions.qml +++ b/resources/qml/Actions.qml @@ -480,6 +480,6 @@ Item { id: browsePackagesAction text: "&Marketplace" - iconName: "plugins_browse" + icon.name: "plugins_browse" } }