[SOLVED] QML Selective LayoutMirroring (Child override parent mirroring).
QML and Qt Quick
2
Posts
1
Posters
1.6k
Views
1
Watching
-
I have a hierarchy of QML files forming my application (as normal).
The application has support for RightToLeft languages such as Hebrew, so we use LayoutMirroring.childrenInherit to switch layout direction via the parent (main.qml) when we switch language settings.
The problem is there are two QML files I do not want to respect the parent-child layout dependency created by LayoutMirroring.childInherit. I want to always have these certain files in LeftToRight layout.
Is this possible?