Make retry_decrypt_events() work for good

This commit is contained in:
miruka
2020-03-15 17:26:41 -04:00
parent adbe2d88ee
commit 8a99ccd976
3 changed files with 8 additions and 5 deletions

View File

@@ -60,13 +60,13 @@ QtObject {
function onModelItemInserted(syncId, index, item) {
print("insert", syncId, index, item)
// print("insert", syncId, index, item)
ModelStore.get(syncId).insert(index, item)
}
function onModelItemFieldChanged(syncId, oldIndex, newIndex, field, value){
print("change", syncId, oldIndex, newIndex, field, value)
// print("change", syncId, oldIndex, newIndex, field, value)
const model = ModelStore.get(syncId)
model.setProperty(oldIndex, field, value)