diff options
author | Martin Klapetek <mklapetek@kde.org> | 2013-12-06 22:11:06 +0100 |
---|---|---|
committer | The Qt Project <gerrit-noreply@qt-project.org> | 2014-01-21 15:14:16 +0100 |
commit | 0e59f0ecd94988f94c2b8e5a6ffd230e220ba273 (patch) | |
tree | 2266487476df8d1171c84d93536c52a570c3756d | |
parent | d8b7a0447000e6dac8e56ea9374ba946ecfb5cdb (diff) | |
download | qtquickcontrols-0e59f0ecd94988f94c2b8e5a6ffd230e220ba273.tar.gz qtquickcontrols-0e59f0ecd94988f94c2b8e5a6ffd230e220ba273.tar.bz2 qtquickcontrols-0e59f0ecd94988f94c2b8e5a6ffd230e220ba273.zip |
Remove unused white rectangle causing drawing issues
The spinbox has a white rectangle which overlaps the frames with some
styles (eg. oxygen). However the Rectangle itself serves no real purpose
and so it's removed.
Change-Id: I37a6862dfd8ac21fb24b54261fa7d7ab54aa23c7
Reviewed-by: David Edmundson <davidedmundson@kde.org>
Reviewed-by: J-P Nurmi <jpnurmi@digia.com>
-rw-r--r-- | src/controls/Styles/Desktop/SpinBoxStyle.qml | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/controls/Styles/Desktop/SpinBoxStyle.qml b/src/controls/Styles/Desktop/SpinBoxStyle.qml index 5cf13ea8..18bfec36 100644 --- a/src/controls/Styles/Desktop/SpinBoxStyle.qml +++ b/src/controls/Styles/Desktop/SpinBoxStyle.qml @@ -88,11 +88,6 @@ Style { Item { id: edit anchors.fill: parent - Rectangle { - color: "white" - anchors.fill: parent - anchors.margins: -1 - } FocusFrame { anchors.fill: parent focusMargin:-6 |