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

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

    XMLWordPrintable

Details

    • All
    • 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

          No reviews matched the request. Check your Options in the drop-down menu of this sections header.

          Activity

            People

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

              Dates

                Created:
                Updated:
                Resolved:

                Gerrit Reviews

                  There are no open Gerrit changes