Switched to qmlformat.

This commit is contained in:
ItsLemmy
2025-11-16 17:07:03 -05:00
parent 32905224b9
commit 3ff5b7639f
223 changed files with 9970 additions and 9658 deletions
+4 -4
View File
@@ -68,12 +68,12 @@ RowLayout {
cursorShape: Qt.PointingHandCursor
hoverEnabled: true
onEntered: {
hovering = true
root.entered()
hovering = true;
root.entered();
}
onExited: {
hovering = false
root.exited()
hovering = false;
root.exited();
}
onClicked: root.toggled(!root.checked)
}