Files
z-bar-qt/Components/CustomFlickable.qml
T
zach ca1243f9c7
Lint & Format (JS/TS) / lint-format (pull_request) Successful in 13s
Python / lint-format (pull_request) Successful in 25s
Python / test (pull_request) Successful in 32s
Lint & Format (Rust) / lint-format (pull_request) Successful in 1m28s
disable interactible elements when drawing
2026-06-19 23:21:01 +02:00

16 lines
201 B
QML

import QtQuick
import qs.Helpers
Flickable {
id: root
interactive: !Visibilities.getForActive().isDrawing
maximumFlickVelocity: 3000
rebound: Transition {
Anim {
properties: "x,y"
}
}
}