Enhancements:
- added the `align` parameter to all topbar widgets, allowing for individual widgets to be placed either on the left or right hand side of the topbar. - Disabled QtChart’s context menu by default. Bug Fixes: - The `screenshot` method now works for subcharts. - Tables will still render if a `NoneType` is passed to them as a value. - Qt and Wx charts no longer throw an error when using the toolbox.
This commit is contained in:
@ -22,7 +22,7 @@ class Row(dict):
|
||||
self._table = table
|
||||
self.id = id
|
||||
self.meta = {}
|
||||
self.run_script(f'{self._table.id}.newRow({list(items.values())}, "{self.id}")')
|
||||
self.run_script(f'{self._table.id}.newRow("{self.id}")')
|
||||
for key, val in items.items():
|
||||
self[key] = val
|
||||
|
||||
|
||||
Reference in New Issue
Block a user