diff options
author | Michael Bohlender <michael.bohlender@kdemail.net> | 2017-05-11 11:46:48 +0200 |
---|---|---|
committer | Michael Bohlender <michael.bohlender@kdemail.net> | 2017-05-11 11:46:48 +0200 |
commit | 818c59a5a652a34c7234cef75445052ca4032d24 (patch) | |
tree | b3e4fd635e6a0d29362ff4c67739af6fd152415e | |
parent | 28764304763c67eaa9c5209ed7d8bc1d93520867 (diff) | |
download | kube-818c59a5a652a34c7234cef75445052ca4032d24.tar.gz kube-818c59a5a652a34c7234cef75445052ca4032d24.zip |
remove round stuff from progressbar
-rw-r--r-- | framework/qml/ProgressBar.qml | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/framework/qml/ProgressBar.qml b/framework/qml/ProgressBar.qml index 12d4f0e9..a87641d3 100644 --- a/framework/qml/ProgressBar.qml +++ b/framework/qml/ProgressBar.qml | |||
@@ -24,14 +24,12 @@ T.ProgressBar { | |||
24 | id: root | 24 | id: root |
25 | background: Rectangle { | 25 | background: Rectangle { |
26 | color: Kube.Colors.backgroundColor | 26 | color: Kube.Colors.backgroundColor |
27 | radius: 3 | ||
28 | } | 27 | } |
29 | 28 | ||
30 | contentItem: Item { | 29 | contentItem: Item { |
31 | Rectangle { | 30 | Rectangle { |
32 | width: root.visualPosition * root.width | 31 | width: root.visualPosition * root.width |
33 | height: root.height | 32 | height: root.height |
34 | radius: 2 | ||
35 | color: Kube.Colors.highlightColor | 33 | color: Kube.Colors.highlightColor |
36 | } | 34 | } |
37 | } | 35 | } |