mirror of
https://gitlab.com/eql/lqml.git
synced 2025-12-06 10:31:34 -08:00
12 lines
259 B
QML
12 lines
259 B
QML
import QtQuick 2.15
|
|
import QtQuick.Controls 2.15
|
|
|
|
Button {
|
|
width: main.small ? 30 : 42
|
|
height: width
|
|
font.family: fontAwesome.name
|
|
font.pixelSize: main.small ? 20 : 28
|
|
focusPolicy: Qt.NoFocus
|
|
|
|
onPressed: Lisp.call(this, "editor:button-pressed")
|
|
}
|