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

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")
}