Autoformat

This commit is contained in:
Ly-sec 2025-08-28 15:35:52 +02:00
parent e237bd04ff
commit d0b7ccf302
6 changed files with 81 additions and 43 deletions

View file

@ -47,14 +47,26 @@ RowLayout {
anchors.fill: parent
cursorShape: Qt.PointingHandCursor
hoverEnabled: true
onEntered: { hovering = true; root.entered() }
onExited: { hovering = false; root.exited() }
onEntered: {
hovering = true
root.entered()
}
onExited: {
hovering = false
root.exited()
}
onClicked: root.toggled(!root.checked)
}
Behavior on color { ColorAnimation { duration: Style.animationFast } }
Behavior on border.color { ColorAnimation { duration: Style.animationFast } }
Behavior on color {
ColorAnimation {
duration: Style.animationFast
}
}
Behavior on border.color {
ColorAnimation {
duration: Style.animationFast
}
}
}
}