Revert "Update model data handling in 3MFReader plugin"

This reverts commit 4da17d643d.
This commit is contained in:
c.lamboo 2024-03-20 13:34:41 +01:00
parent 15d600e76c
commit 9662aefa37
2 changed files with 5 additions and 8 deletions

View file

@ -362,6 +362,10 @@ class WorkspaceDialog(QObject):
def exportedSettingModel(self):
return self._exported_settings_model
@pyqtProperty("QVariantList", notify=exportedSettingModelChanged)
def exportedSettingModelItems(self):
return self._exported_settings_model.items
@pyqtProperty(int, notify=exportedSettingModelChanged)
def exportedSettingModelRowCount(self):
return self._exported_settings_model.rowCount()