lqml/examples/cl-repl/qml/ext/Button.qml
2022-04-09 19:12:45 +02:00

12 lines
274 B
QML

import QtQuick 2.15
import QtQuick.Controls 2.15
Button {
width: main.small ? 40 : 60
height: main.small ? 37 : 55
font.family: fontAwesome.name
font.pixelSize: main.small ? 25 : 36
focusPolicy: Qt.NoFocus
onPressed: Lisp.call(this, "editor:button-pressed")
}