Fix display text issues in varuious GUI elements

This commit is contained in:
Veronica Berglyd Olsen
2022-04-16 14:59:59 +02:00
parent e98e942f19
commit cf7e1da96a
3 changed files with 22 additions and 16 deletions
+2 -2
View File
@@ -294,8 +294,8 @@ class GuiProjectEditStatus(QWidget):
self.listBox.setColumnWidth(self.COL_LABEL, wCol0)
self.listBox.setIndentation(0)
for key, data in self.theStatus.items():
self._addItem(key, data["name"], data["cols"], data["count"])
for key, entry in self.theStatus.items():
self._addItem(key, entry["name"], entry["cols"], entry["count"])
# List Controls
# =============