fix(Minttoken): Account selector is no longer present under fees section

It seems that for `macOS`, `ParentChange` trigger was not correctly set if using specific `when` condition on desktop app (working properly on storybook). Setting it always to `true`, it does the trick and reparents footer component as expected.

Fixes #11742
This commit is contained in:
Noelia 2023-08-04 14:08:45 +02:00 committed by Noelia
parent 6e5469f5aa
commit ecf5efb94e
1 changed files with 4 additions and 1 deletions

View File

@ -27,7 +27,10 @@ Control {
property Item footer
states: State {
when: root.footer
// Setting condition on root.footer doesn't work for some configurations (macOS or specific qt version)
// Setting when directly to true seems to be relable option because ParentChange and PropertyChanges tolerate target set to null
// when: root.footer
when: true
ParentChange {
target: root.footer