lqml/examples/Qt6/cl-repl/qml/ext/MenuButton.qml
2024-10-26 12:58:33 +02:00

13 lines
279 B
QML

import QtQuick
import QtQuick.Controls
import QtQuick.Controls.Basic
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")
}