diff options
| author | J-P Nurmi <jpnurmi@theqtcompany.com> | 2015-02-03 12:16:29 +0100 |
|---|---|---|
| committer | J-P Nurmi <jpnurmi@theqtcompany.com> | 2015-02-04 14:11:28 +0000 |
| commit | 5f7f27759e23fb1e5f3779a580adcf5bb6d5ecd6 (patch) | |
| tree | 46c6dc99752ea4492c43758f0e49cd971653e09f /src/controls/SplitView.qml | |
| parent | 31803eb51bb2dde55776317b678d48d76f0e27fe (diff) | |
Disable hover on touch
Task-number: QTBUG-44267
Change-Id: I467f08ae6c5264b7e858022af9ff293117434018
Reviewed-by: Caroline Chao <caroline.chao@theqtcompany.com>
Diffstat (limited to 'src/controls/SplitView.qml')
| -rw-r--r-- | src/controls/SplitView.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/controls/SplitView.qml b/src/controls/SplitView.qml index f4360746e..18289aa85 100644 --- a/src/controls/SplitView.qml +++ b/src/controls/SplitView.qml @@ -433,7 +433,7 @@ Item { anchors.rightMargin: (parent.width <= 1) ? -defaultMargin : 0 anchors.topMargin: (parent.height <= 1) ? -defaultMargin : 0 anchors.bottomMargin: (parent.height <= 1) ? -defaultMargin : 0 - hoverEnabled: true + hoverEnabled: Private.Settings.hoverEnabled drag.threshold: 0 drag.target: parent drag.axis: root.orientation === Qt.Horizontal ? Drag.XAxis : Drag.YAxis |
