aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/controls/Slider.qml
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@qt.io>2016-06-12 22:36:41 +0200
committerJ-P Nurmi <jpnurmi@qt.io>2016-06-13 11:00:44 +0000
commit058e3946dfbef24309515d27c985048866b69fc9 (patch)
tree02cb6becf74dbcb562a94fe22ed768e6c80fda17 /src/imports/controls/Slider.qml
parentb17cf27b1afd5045aa6bce923f9eebc439d4fc39 (diff)
Sliders: fix implicit size calculations
Background size was in the bindings twice: once without and once with paddings. Change-Id: I863d1fe29f1d79017bad410b31f961e4d1238e3b Reviewed-by: Mitch Curtis <mitch.curtis@qt.io>
Diffstat (limited to 'src/imports/controls/Slider.qml')
-rw-r--r--src/imports/controls/Slider.qml6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/imports/controls/Slider.qml b/src/imports/controls/Slider.qml
index a44a6c80..896dbca0 100644
--- a/src/imports/controls/Slider.qml
+++ b/src/imports/controls/Slider.qml
@@ -41,11 +41,9 @@ T.Slider {
id: control
implicitWidth: Math.max(background ? background.implicitWidth : 0,
- Math.max(background ? background.implicitWidth : 0,
- handle ? handle.implicitWidth : 0) + leftPadding + rightPadding)
+ (handle ? handle.implicitWidth : 0) + leftPadding + rightPadding)
implicitHeight: Math.max(background ? background.implicitHeight : 0,
- Math.max(background ? background.implicitHeight : 0,
- handle ? handle.implicitHeight : 0) + topPadding + bottomPadding)
+ (handle ? handle.implicitHeight : 0) + topPadding + bottomPadding)
padding: 6