From 307d751c2d47fc1805d4058d6659d7e75ddeb1e7 Mon Sep 17 00:00:00 2001 From: Remco Burema Date: Thu, 18 Nov 2021 08:14:04 +0100 Subject: [PATCH] Fix white rectangles in dark mode and height of search-bar. part of CURA-8559 --- plugins/Marketplace/resources/qml/Marketplace.qml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 {