(self, *args, **kwargs)
| 106 | self.onPropertyChanged() |
| 107 | |
| 108 | def onPropertyChanged(self, *args, **kwargs): |
| 109 | data = self.mapper.toJson(indent=2) |
| 110 | self.editJsonView.blockSignals(True) |
| 111 | self.editJsonView.setPlainText(data) |
| 112 | self.editJsonView.blockSignals(False) |
| 113 | |
| 114 | def onJsonChanged(self): |
| 115 | text = self.editJsonView.toPlainText().strip() |