Update repeater offset to be length instead of 2
This commit is contained in:
@@ -55,7 +55,7 @@ StackLayout {
|
||||
]
|
||||
|
||||
Keys.onPressed: (event)=> {
|
||||
var x = currentIndex > 2 ? currentIndex + 1 : currentIndex;
|
||||
var x = currentIndex > providers.length ? currentIndex + 1 : currentIndex;
|
||||
//tabView.children[currentIndex].Keys.pressed(event);
|
||||
tabView.children[x].Keys.pressed(event);
|
||||
if (tabView.children[x].viewExit) {
|
||||
|
||||
Reference in New Issue
Block a user