mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-16 19:28:07 -06:00
Update through self.setItems rather than super().update
Because super().update doesn't exist in this case. Stupid. Contributes to issue CURA-6597.
This commit is contained in:
parent
0047874f03
commit
6e373e02c0
1 changed files with 1 additions and 1 deletions
|
@ -60,4 +60,4 @@ class IntentCategoryModel(ListModel):
|
||||||
"intent_category": category,
|
"intent_category": category,
|
||||||
"weight": list(self.name_translation.keys()).index(category)
|
"weight": list(self.name_translation.keys()).index(category)
|
||||||
})
|
})
|
||||||
super().update(result)
|
self.setItems(result)
|
Loading…
Add table
Add a link
Reference in a new issue