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

@@ -42,7 +42,7 @@ Kirigami.Action {
Purpose.PurposeAlternativesModel {
pluginType: "Export"
}', root._instantiator);
purposeModel.inputData = Qt.binding(function() {
purposeModel.inputData = Qt.binding(function () {
return root.inputData;
});
_instantiator.model = purposeModel;
@@ -59,12 +59,12 @@ Purpose.PurposeAlternativesModel {
title: root.tooltip,
index: index,
model: root._instantiator.model
})
});
}
}
onObjectAdded: (index, object) => {
object.index = index;
root.children.push(object)
root.children.push(object);
}
onObjectRemoved: (index, object) => root.children = Array.from(root.children).filter(obj => obj.pluginId !== object.pluginId)
}