Skip to content

Commit

Permalink
fix: can not drag and drop item to other page
Browse files Browse the repository at this point in the history
missing params
  • Loading branch information
kegechen committed Jun 19, 2024
1 parent bac03fe commit 6d6c8d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions qml/FullscreenFrame.qml
Original file line number Diff line number Diff line change
Expand Up @@ -247,10 +247,10 @@ Control {
parent.pageIntent = 0
return
} else {
incrementPageIndex()
incrementPageIndex(pages)
}
} else if (parent.pageIntent < 0) {
decrementPageIndex()
decrementPageIndex(pages)
}

parent.pageIntent = 0
Expand Down

0 comments on commit 6d6c8d0

Please sign in to comment.