Run qmlformat over everything

This commit is contained in:
Tobias Fella
2024-01-31 22:45:40 +01:00
parent 6029c0d0b3
commit fe52d26f05
126 changed files with 1481 additions and 1183 deletions

View File

@@ -110,7 +110,7 @@ Kirigami.ScrollablePage {
Keys.onEnterPressed: searchButton.clicked()
Keys.onReturnPressed: searchButton.clicked()
onTextChanged: {
searchTimer.restart()
searchTimer.restart();
if (model) {
model.searchText = text;
}
@@ -121,7 +121,7 @@ Kirigami.ScrollablePage {
icon.name: "search"
onClicked: {
if (typeof model.search === 'function') {
model.search()
model.search();
}
}
}
@@ -130,7 +130,7 @@ Kirigami.ScrollablePage {
interval: 500
running: true
onTriggered: if (typeof model.search === 'function') {
model.search()
model.search();
}
}
}
@@ -162,4 +162,3 @@ Kirigami.ScrollablePage {
}
}
}