Uploaded image for project: 'Qt'
  1. Qt
  2. QTBUG-132071

QML Window Container: Tab Focus between parent and embedded window doesn't work

XMLWordPrintable

    • All
    • c815f6fe7 (dev), 55337dd7c (6.9)

      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.

        For Gerrit Dashboard: QTBUG-132071
        # Subject Branch Project Status CR V

            dorisverria Doris Verria
            dorisverria Doris Verria
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated:
              Resolved:

                There are no open Gerrit changes