Details
-
Bug
-
Resolution: Cannot Reproduce
-
Not Evaluated
-
5.1.1
-
None
Description
I am using MouseArea above SplitView.
The property cursorShape is set to Qt.ArrowCursor.
When cursor is hovering over splitter, cursor doesn't remain and "Qt.SplitHCursor" is shown,
When cursorShape isn't Qt.ArrowCursor, this problem doesn't happen.
The following code can be used to observe this problem.
import QtQuick 2.0 import QtQuick.Controls 1.0 Rectangle { width: 360 height: 360 SplitView { orientation: Qt.Horizontal anchors.fill: parent Rectangle { width: 100 color: "black" } Rectangle { color: "red" } } MouseArea { z: 100 anchors.fill: parent hoverEnabled: true acceptedButtons: Qt.AllButtons preventStealing: true propagateComposedEvents: false cursorShape: Qt.ArrowCursor } }