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
+8 -8
View File
@@ -79,20 +79,20 @@ RowLayout {
hoverEnabled: true
onEntered: {
if (!enabled)
return
hovering = true
root.entered()
return;
hovering = true;
root.entered();
}
onExited: {
if (!enabled)
return
hovering = false
root.exited()
return;
hovering = false;
root.exited();
}
onClicked: {
if (!enabled)
return
root.toggled(!root.checked)
return;
root.toggled(!root.checked);
}
}
}