mirror of
https://gitlab.com/eql/lqml.git
synced 2025-12-20 17:10:58 -08:00
15 lines
297 B
QML
15 lines
297 B
QML
import QtQuick 2.15
|
|
import QtQuick.Controls 2.15
|
|
|
|
Button {
|
|
id: parenButton
|
|
width: 1.4 * (main.small ? 35 : 55)
|
|
icon.width: width / 1.4
|
|
icon.height: height / 1.4
|
|
height: width
|
|
focusPolicy: Qt.NoFocus
|
|
flat: true
|
|
opacity: 0.12
|
|
|
|
onPressed: Lisp.call(this, "editor:button-pressed")
|
|
}
|