Details
-
Bug
-
Resolution: Unresolved
-
P2: Important
-
None
-
5.12.12, 6.4.2
-
None
Description
Texts are still aligned to left.
import QtQuick 2.12 import QtQuick.Window 2.12 import QtQuick.Layouts 1.12 import QtQuick.Controls 2.12 Window { id: root width: 250 height: 150 visible: true title: qsTr("Hello World") ComboBox { model: 10 LayoutMirroring.enabled: true LayoutMirroring.childrenInherit: true } }