diff --git a/plugins/Marketplace/resources/qml/Marketplace.qml b/plugins/Marketplace/resources/qml/Marketplace.qml index 124bc7406b..c04aa7eb6a 100644 --- a/plugins/Marketplace/resources/qml/Marketplace.qml +++ b/plugins/Marketplace/resources/qml/Marketplace.qml @@ -85,6 +85,7 @@ Window Rectangle { + color: "transparent" Layout.preferredHeight: parent.height Layout.preferredWidth: searchBar.visible ? UM.Theme.getSize("thin_margin").width : 0 Layout.fillWidth: ! searchBar.visible @@ -93,7 +94,7 @@ Window Cura.SearchBar { id: searchBar - Layout.preferredHeight: parent.height + Layout.preferredHeight: UM.Theme.getSize("button_icon").height Layout.fillWidth: true onTextEdited: searchStringChanged(text) } @@ -105,6 +106,7 @@ Window anchors.right: parent.right height: UM.Theme.getSize("button_icon").height spacing: 0 + background: Rectangle { color: "transparent" } PackageTypeTab { diff --git a/plugins/Marketplace/resources/qml/Packages.qml b/plugins/Marketplace/resources/qml/Packages.qml index 5a7f56748a..79b4bf23a5 100644 --- a/plugins/Marketplace/resources/qml/Packages.qml +++ b/plugins/Marketplace/resources/qml/Packages.qml @@ -147,7 +147,7 @@ ListView PropertyChanges { target: loadMoreLabel - text: catalog.i18nc("@button", "No more results to load") + text: packages.model.count > 0 ? catalog.i18nc("@message", "No more results to load") : catalog.i18nc("@message", "No results found with current filter") color: UM.Theme.getColor("action_button_disabled_text") } }