Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJelle Spijker <spijker.jelle@gmail.com>2021-12-09 10:30:22 +0300
committerJelle Spijker <spijker.jelle@gmail.com>2021-12-09 10:30:22 +0300
commit59470814e2be076e10afa717190a4e39fe267a6e (patch)
tree5224dbc7ae592c1e750aa39374023c4cf12d15fa /plugins/Marketplace/resources
parent7734bf5169fc70852c4035bc482ec54ee51bb8f5 (diff)
Show spinner again
Contributes to: CURA-8587
Diffstat (limited to 'plugins/Marketplace/resources')
-rw-r--r--plugins/Marketplace/resources/qml/ManageButton.qml8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/Marketplace/resources/qml/ManageButton.qml b/plugins/Marketplace/resources/qml/ManageButton.qml
index 2e2ef294d1..fdeb37a87a 100644
--- a/plugins/Marketplace/resources/qml/ManageButton.qml
+++ b/plugins/Marketplace/resources/qml/ManageButton.qml
@@ -55,12 +55,11 @@ Item
UM.RecolorImage
{
id: busyIndicator
+ visible: parent.visible
+ height: UM.Theme.getSize("action_button").height - 2 * UM.Theme.getSize("narrow_margin").height
width: height
anchors.left: parent.left
- anchors.top: parent.top
- anchors.topMargin: UM.Theme.getSize("narrow_margin").height
- anchors.bottom: parent.bottom
- anchors.bottomMargin: anchors.topMargin
+ anchors.verticalCenter: parent.verticalCenter
source: UM.Theme.getIcon("Spinner")
color: UM.Theme.getColor("primary")
@@ -78,6 +77,7 @@ Item
Label
{
id: busyMessageText
+ visible: parent.visible
anchors.left: busyIndicator.right
anchors.leftMargin: UM.Theme.getSize("narrow_margin").width
anchors.verticalCenter: parent.verticalCenter