Update viewer panel when importance labels change (#1992)

This commit is contained in:
Veronica Berglyd Olsen
2024-07-25 19:21:52 +02:00
parent 5936e1a68b
commit 3bffaa01dc
4 changed files with 21 additions and 1 deletions
+7
View File
@@ -189,6 +189,13 @@ class GuiDocViewerPanel(QWidget):
self._updateTabVisibility()
return
@pyqtSlot(str)
def updateStatusLabels(self, kind: str) -> None:
"""Update the importance labels."""
if kind == "i":
self._loadAllTags()
return
##
# Private Slots
##