mirror of
https://gitlab.com/eql/lqml.git
synced 2026-01-10 03:02:53 -08:00
19 lines
311 B
QML
19 lines
311 B
QML
import QtQuick 2.15
|
|
import QtQuick.Controls 2.15
|
|
|
|
Button {
|
|
id: parenButton
|
|
width: main.small ? 35 : 55
|
|
height: width
|
|
focusPolicy: Qt.NoFocus
|
|
flat: true
|
|
opacity: 0.12
|
|
|
|
property url source
|
|
|
|
background: Image {
|
|
source: parent.source
|
|
}
|
|
|
|
onPressed: Lisp.call(this, "editor:button-pressed")
|
|
}
|