aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/controls/BusyIndicator.qml
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@theqtcompany.com>2015-07-09 15:35:46 +0200
committerJ-P Nurmi <jpnurmi@theqtcompany.com>2015-07-09 13:57:50 +0000
commit185613f2eecb094cd119558c807679fc34929b05 (patch)
tree7c8dc57e648f361ee34688ef159266b072d2e59c /src/imports/controls/BusyIndicator.qml
parentb4dddacae65c07ceba68fee24d8f1fa56c65977a (diff)
Fix visual padding
All delegate items should use availableWidth/Height instead of the whole control width/height to respect paddings. Change-Id: Ia299fab3daad6853a163c10f59e590c8fbab1783 Reviewed-by: J-P Nurmi <jpnurmi@theqtcompany.com>
Diffstat (limited to 'src/imports/controls/BusyIndicator.qml')
-rw-r--r--src/imports/controls/BusyIndicator.qml8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/imports/controls/BusyIndicator.qml b/src/imports/controls/BusyIndicator.qml
index f67728c5..0a16979a 100644
--- a/src/imports/controls/BusyIndicator.qml
+++ b/src/imports/controls/BusyIndicator.qml
@@ -52,10 +52,10 @@ AbstractBusyIndicator {
id: delegate
implicitWidth: 48
implicitHeight: 48
- x: (parent.width - width) / 2
- y: (parent.height - height) / 2
- width: parent.width
- height: parent.height
+ x: control.leftPadding + (control.availableWidth - width) / 2
+ y: control.topPadding + (control.availableHeight - height) / 2
+ width: control.availableWidth
+ height: control.availableHeight
opacity: control.running ? 1 : 0
Behavior on opacity { OpacityAnimator { duration: 250 } }