Fix ListViewType scrolling on country selection page
This commit is contained in:
parent
7169480999
commit
5c40f382fd
1 changed files with 7 additions and 1 deletions
|
|
@ -51,7 +51,13 @@ PageType {
|
||||||
|
|
||||||
model: ApiCountryModel
|
model: ApiCountryModel
|
||||||
|
|
||||||
currentIndex: 0
|
// Commented out the binding to prevent constant reset to 0
|
||||||
|
// currentIndex: 0
|
||||||
|
|
||||||
|
Component.onCompleted: {
|
||||||
|
// One-time initialization to 0, allowing free scrolling afterward
|
||||||
|
currentIndex = 0
|
||||||
|
}
|
||||||
|
|
||||||
ButtonGroup {
|
ButtonGroup {
|
||||||
id: containersRadioButtonGroup
|
id: containersRadioButtonGroup
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue