-
Bug
-
Resolution: Done
-
P2: Important
-
5.3.2, 5.4.0 Beta
-
Android
-
-
aa510d9ac0bd1ecab6baa260d3ff5f2a64eb3acf
Slider value van't be changed by tapping, dragging the handle works fine.
It can be easily reproduced with the below code:
import QtQuick 2.3 import QtQuick.Controls 1.2 import QtQuick.Controls.Styles 1.2 ApplicationWindow { visible: true width: 640 height: 480 title: qsTr("Hello World") Slider { anchors.centerIn: parent tickmarksEnabled: true stepSize: 1.0 maximumValue: 5.0 style: SliderStyle { groove: Rectangle { implicitWidth: 200 implicitHeight: 8 color: "gray" radius: 8 } handle: Rectangle { anchors.centerIn: parent color: control.pressed ? "white" : "lightgray" border.color: "gray" border.width: 2 implicitWidth: 32 implicitHeight: 32 radius: 12 } } } }
For Gerrit Dashboard: QTBUG-42252 | ||||||
---|---|---|---|---|---|---|
# | Subject | Branch | Project | Status | CR | V |
98865,3 | Slider: fix tap-to-set-value on touch screens | 5.4 | qt/qtquickcontrols | Status: MERGED | +2 | 0 |