From 9c062e32282f92ded585deba6dd29606ea3ddac4 Mon Sep 17 00:00:00 2001 From: danteruiz Date: Thu, 29 Aug 2019 15:48:53 -0700 Subject: [PATCH] progrss bar touch up --- launchers/qt/resources/qml/Download.qml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/launchers/qt/resources/qml/Download.qml b/launchers/qt/resources/qml/Download.qml index 011dbbe6cf..8020889e8a 100644 --- a/launchers/qt/resources/qml/Download.qml +++ b/launchers/qt/resources/qml/Download.qml @@ -60,7 +60,7 @@ Item { ProgressBar { id: progressBar width: 394 - height: 12 + height: 8 anchors { top: secondText.bottom @@ -71,18 +71,18 @@ Item { background: Rectangle { implicitWidth: progressBar.width implicitHeight: progressBar.height - radius: 4 + radius: 8 color: "#252525" } contentItem: Item { implicitWidth: progressBar.width - implicitHeight: progressBar.height * 0.90 + implicitHeight: progressBar.height * 0.85 Rectangle { width: progressBar.visualPosition * parent.width height: parent.height - radius: 3 + radius: 6 color: "#01B2ED" } }