mirror of
https://gitlab.com/eql/lqml.git
synced 2025-12-05 18:20:33 -08:00
13 lines
256 B
QML
13 lines
256 B
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Controls.Basic
|
|
|
|
Button {
|
|
width: main.small ? 32 : 50
|
|
height: width
|
|
font.family: fontAwesome.name
|
|
font.pixelSize: width - 6
|
|
opacity: 0.8
|
|
|
|
onPressed: Lisp.call(this, "qsoko:button-pressed")
|
|
}
|