fixes account tab content overlay

This commit is contained in:
gridtime 2024-01-07 15:47:51 +01:00
parent 1e61d1c538
commit de4bd2c4a6
No known key found for this signature in database
GPG Key ID: FB6ACC7A1C9182F8

View File

@ -28,8 +28,17 @@ HPage {
HTabButton { text: qsTr("Security") }
}
General { userId: page.userId }
Notifications { userId: page.userId }
Security { userId: page.userId }
General {
userId: page.userId
implicitWidth: TabBar.width
}
Notifications {
userId: page.userId
implicitWidth: TabBar.width
}
Security {
userId: page.userId
implicitWidth: TabBar.width
}
}
}