make text in status bar selectable

This commit is contained in:
2022-06-25 09:01:01 +02:00
parent af69988b4a
commit 1a4006ca8f
2 changed files with 4 additions and 1 deletions

View File

@@ -87,7 +87,7 @@ class KrowLogPlugin(PluginBase):
def update_status_bar(self, text: str):
if not self.main_window:
return
self.main_window.status_bar.showMessage(text)
self.main_window.status_bar_text.setText(text)
def update_ui(self):
self.main_window.update()