Details
-
Type:
Bug
-
Status: Open
-
Priority:
P2: Important
-
Resolution: Unresolved
-
Affects Version/s: 5.9.1, 5.12.1, 5.15.2, 6.0.0, 6.3.1, 6.4.0 Beta1
-
Fix Version/s: None
-
Component/s: Quick: Controls 2
-
Environment:Windows 7, MSVC 2015
Description
1 : Create a button (controls 2.0)
2 : Click on button with a touchscreen and log the onHoveredChanged signal.
What is happening with a touch screen :
the hovered property is set to true on click but is never reset to false on release.
It seems that on touch screen only, hovered is disabled due to this.
QTBUG-44267
Our application can use a touch device and a mouse at the same time.
The hover should be disabled on touch events or should behave correctly. But the observed behavior is inconsistent.
import QtQuick 2.0
import QtQuick.Controls 2.2
Button {
hoverEnabled:true
onHoveredChanged :
{ console.log(hovered) }
}
Attachments
Issue Links
- relates to
-
QTBUG-40856 MouseArea containsMouse flag is not reset on Touch Screen
-
- Open
-
-
QTBUG-64712 QQC2: Bug in ToolButton on Windows with Touchscreen
-
- Closed
-