aboutsummaryrefslogtreecommitdiffstats
path: root/examples/quickcontrols2/gallery/pages/ProgressBarPage.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/quickcontrols2/gallery/pages/ProgressBarPage.qml')
-rw-r--r--examples/quickcontrols2/gallery/pages/ProgressBarPage.qml4
1 files changed, 0 insertions, 4 deletions
diff --git a/examples/quickcontrols2/gallery/pages/ProgressBarPage.qml b/examples/quickcontrols2/gallery/pages/ProgressBarPage.qml
index 1548192f..a2646fd0 100644
--- a/examples/quickcontrols2/gallery/pages/ProgressBarPage.qml
+++ b/examples/quickcontrols2/gallery/pages/ProgressBarPage.qml
@@ -44,8 +44,6 @@ import QtQuick.Controls 2.1
ScrollablePage {
id: page
- readonly property int itemWidth: Math.max(bar.implicitWidth, page.availableWidth / 3)
-
Column {
spacing: 40
width: parent.width
@@ -61,13 +59,11 @@ ScrollablePage {
ProgressBar {
id: bar
value: 0.5
- width: itemWidth
anchors.horizontalCenter: parent.horizontalCenter
}
ProgressBar {
indeterminate: true
- width: itemWidth
anchors.horizontalCenter: parent.horizontalCenter
}
}