Details
-
Bug
-
Resolution: Unresolved
-
P2: Important
-
None
-
6.2
-
None
Description
Running the code below, I would expect the focus order when tabbing to be:
Test > Cancel > Ok
This matches the left-to-right, top-to-bottom focus navigation seen on e.g. Ubuntu and Windows.
Instead, the order is:
Test > Ok > Cancel
import QtQuick import QtQuick.Controls ApplicationWindow { width: 800 height: 700 title: "activeFocusItem: " + activeFocusItem visible: true Dialog { standardButtons: Dialog.Ok | Dialog.Cancel focus: true visible: true Button { text: "Test" focus: true } } }
When this is fixed, the BLACKLIST in the qquickfiledialogimpl auto test should be removed.
Attachments
Issue Links
- relates to
-
QTBUG-87797 Implement non-native FileDialog
- Closed