Skip to content

Commit

Permalink
fix(android): another circularMode fix
Browse files Browse the repository at this point in the history
  • Loading branch information
farfromrefug committed Dec 17, 2024
1 parent aa45ba2 commit 39a61b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ui-pager/index.android.ts
Original file line number Diff line number Diff line change
Expand Up @@ -431,9 +431,9 @@ export class Pager extends PagerBase {
nativeView.setCurrentItem(index, animate);
if (!animate) {
// without animate we wont go through the delegate
selectedIndexProperty.nativeValueChange(this, index);
selectedIndexProperty.nativeValueChange(this, value);
if (this.indicator) {
this.indicator.setSelection(index, false);
this.indicator.setSelection(value, false);
}
}
if (requestTransform) {
Expand Down

0 comments on commit 39a61b1

Please sign in to comment.