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
+3 -3
View File
@@ -11,14 +11,14 @@ Singleton {
// Convenience methods
function showNotice(message, description = "", icon = "", duration = 3000) {
notify(message, description, icon, "notice", duration)
notify(message, description, icon, "notice", duration);
}
function showWarning(message, description = "", duration = 4000) {
notify(message, description, "", "warning", duration)
notify(message, description, "", "warning", duration);
}
function showError(message, description = "", duration = 6000) {
notify(message, description, "", "error", duration)
notify(message, description, "", "error", duration);
}
}