Details
-
Bug
-
Resolution: Fixed
-
P2: Important
-
6.5.1
-
macOS 13.3.1 (M1), XCode 14.3, iOS Simulator 16.4
-
-
46d69b6ca (dev), ffe74b562 (6.5), ec3929789 (6.6)
Description
Code
import QtQuick import QtQuick.Controls Window { visible: true Column { spacing: 10 Button { text: "Click Me" onClicked: console.log("clicked") } TextEdit { readOnly: true text: "Stealer" } } }
Steps to reproduce
- Build and run the code above for the iOS Simulator
- Click the button 3 times
- Click on the TextEdit
- Click the button 3 times
- Repeat Steps #3 and #4 a few times
Outcomes
- After Step #2, we see "clicked" printed 3 times in the debug output (Expected)
- After Step #4, we see "clicked" printed only 1 time in the debug output (Not expected)
After the TextEdit receives focus, the Button responds to 1 more click and then goes silent. Clicking on the TextEdit again brings the Button back to life for 1 more click.
Attachments
Issue Links
- relates to
-
QTBUG-117048 iOS: TextFields "context menu" stops TapHandler from working properly
- Closed