mirror of
https://gitlab.com/eql/lqml.git
synced 2025-12-05 18:20:33 -08:00
14 lines
331 B
QML
14 lines
331 B
QML
import QtQuick
|
|
|
|
Image {
|
|
horizontalAlignment: Image.AlignHCenter
|
|
verticalAlignment: Image.AlignVCenter
|
|
width: header.height
|
|
height: width
|
|
|
|
MouseArea {
|
|
anchors.fill: parent
|
|
onClicked: swipeView.currentIndex = parent.Positioner.index
|
|
onPressAndHold: Lisp.call("app:icon-press-and-hold", parent.objectName)
|
|
}
|
|
}
|