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

@@ -21,7 +21,9 @@ QQC2.Popup {
visible: completions.count > 0
onVisibleChanged: if (visible) root.open()
onVisibleChanged: if (visible) {
root.open();
}
RoomListModel {
id: roomListModel
@@ -33,15 +35,15 @@ QQC2.Popup {
}
function incrementIndex() {
completions.incrementCurrentIndex()
completions.incrementCurrentIndex();
}
function decrementIndex() {
completions.decrementCurrentIndex()
completions.decrementCurrentIndex();
}
function complete() {
root.chatDocumentHandler.complete(completions.currentIndex)
root.chatDocumentHandler.complete(completions.currentIndex);
}
leftPadding: 0