Make some minor GUI tweaks

This commit is contained in:
Veronica Berglyd Olsen
2024-10-31 18:35:28 +01:00
parent dd09d3af2f
commit bbb07c9963
2 changed files with 10 additions and 10 deletions
+8 -8
View File
@@ -961,16 +961,16 @@ class GuiOutlineDetails(QScrollArea):
def clearDetails(self) -> None:
"""Clear all the data labels."""
self.titleLabel.setText(self.tr("Title"))
self.titleValue.setText("")
self.fileValue.setText("")
self.itemValue.setText("")
self.cCValue.setText("")
self.wCValue.setText("")
self.pCValue.setText("")
self.synopValue.setText("")
self.titleValue.clear()
self.fileValue.clear()
self.itemValue.clear()
self.cCValue.clear()
self.wCValue.clear()
self.pCValue.clear()
self.synopValue.clear()
for _, value in self.tagValues.values():
value.setText("")
value.clear()
self.updateClasses()
return