diff --git a/src/widgets/kernel/qwindowcontainer.cpp b/src/widgets/kernel/qwindowcontainer.cpp index c29caf76a8b..e8e8299d805 100644 --- a/src/widgets/kernel/qwindowcontainer.cpp +++ b/src/widgets/kernel/qwindowcontainer.cpp @@ -156,11 +156,13 @@ public: instance have any focus policy and it will delegate focus to the window via a call to QWindow::requestActivate(). However, returning to the normal focus chain from the QWindow instance will - be up to the QWindow instance implementation itself. For instance, - when entering a Qt Quick based window with tab focus, it is quite - likely that further tab presses will only cycle inside the QML - application. Also, whether QWindow::requestActivate() actually - gives the window focus, is platform dependent. + be up to the QWindow instance implementation itself. Also, whether + QWindow::requestActivate() actually gives the window focus, is + platform dependent. + + Since 6.8, if embedding a Qt Quick based window, tab presses will + transition in and out of the embedded QML window, allowing focus to move + to the next or previous focusable object in the window container chain. \li Using many window container instances in a QWidget-based application can greatly hurt the overall performance of the