mirror of
https://gitlab.com/eql/lqml.git
synced 2025-12-06 02:30:38 -08:00
16 lines
365 B
QML
16 lines
365 B
QML
import QtQuick 2.15
|
|
import QtQuick.Controls 2.15
|
|
|
|
Button {
|
|
width: main.small ? 33 : 45
|
|
height: width
|
|
flat: true
|
|
focusPolicy: Qt.NoFocus
|
|
font.family: fontAwesome.name
|
|
font.pixelSize: 1.2 * width
|
|
opacity: 0.12
|
|
scale: 1.2
|
|
|
|
onPressed: Lisp.call(this, "editor:button-pressed")
|
|
onPressAndHold: Lisp.call(this, "editor:button-pressed-and-helt")
|
|
}
|