Skip to content
This repository has been archived by the owner on Nov 13, 2024. It is now read-only.

Commit

Permalink
Fix show status bar message
Browse files Browse the repository at this point in the history
  • Loading branch information
BenediktBurger committed Apr 9, 2024
1 parent 5ab58be commit 852f99b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyleco_extras/gui_utils/base_main_window.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def show_namespace_information(self, full_name: str) -> None:
# Generic methods
def show_status_bar_message(self, message: str, msecs: int = 0) -> None:
"""Show `message` in the statusbar for `timeout` ms (0 means until next message)."""
self.statusBar().showMessage(message=message, msecs=msecs)
self.statusBar().showMessage(message, msecs)


class LECOBaseMainWindowDesigner(_LECOBaseMainWindow):
Expand Down

0 comments on commit 852f99b

Please sign in to comment.