Details
-
Bug
-
Resolution: Fixed
-
P2: Important
-
6.8, 6.9
-
None
-
-
c815f6fe7 (dev), 55337dd7c (6.9)
Description
Found issue in focus navigation between parent and embedded window from testing test case in QTBUG-130754
import QtQuick import QtQuick.Controls.Basic Window { id: outerWindow width: 800 height: 600 visible: true color: "orange" Row { anchors.bottom: parent.bottom TextField {} Button { text: "Click Me" onClicked: console.log("Outer button clicked") } } WindowContainer { window: Window { width: 640 height: 480 visible: true color: "cyan" Row { anchors.bottom: parent.bottom TextField {} Button { text: "Click Me" onClicked: console.log("Inner button clicked") } } } } }
Tab/backtab-navigating from the parent window to the embedded window doesn't work.
Attachments
Issue Links
- relates to
-
QTBUG-130754 [Windows] Issues with keyboard focus when embedding window
- In Progress