mirror of
https://gitlab.com/eql/lqml.git
synced 2025-12-05 18:20:33 -08:00
16 lines
310 B
QML
16 lines
310 B
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Controls.Basic
|
|
|
|
Button {
|
|
width: main.small ? 37 : 50
|
|
height: width
|
|
flat: true
|
|
focusPolicy: Qt.NoFocus
|
|
font.family: fontAwesome.name
|
|
font.pixelSize: 1.2 * width
|
|
opacity: 0.2
|
|
scale: 1.2
|
|
|
|
onPressed: Lisp.call(this, "qsoko:button-pressed")
|
|
}
|