We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 440db16 commit 0073cd5Copy full SHA for 0073cd5
1 file changed
qml/FullscreenFrame.qml
@@ -353,6 +353,22 @@ InputEventItem {
353
interactive: !folderGridViewPopup.visible
354
355
currentIndex: indicator.currentIndex
356
+
357
+ property bool isDragging: false
358
359
+ onFlickStarted: {
360
+ if (!isDragging) {
361
+ cancelFlick()
362
+ contentX = currentIndex * width
363
+ }
364
365
+ onDragStarted: {
366
+ isDragging = true
367
368
+ onMovementEnded: {
369
+ isDragging = false
370
371
372
function setCurrentIndex(index) {
373
listviewPage.currentIndex = index
374
listviewPage.currentIndex = Qt.binding(function() { return indicator.currentIndex })
0 commit comments