We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 440db16 commit 815bc41Copy full SHA for 815bc41
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
+ onDragEnded: {
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