Skip to content

Commit

Permalink
Merge pull request #173 from lukewwww/dym
Browse files Browse the repository at this point in the history
[bug-fix] splash screen not shown at beginning on macos
  • Loading branch information
lukewwww authored Apr 26, 2024
2 parents 1134bad + bd80f5e commit 7032c20
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,8 +195,6 @@ def main():
pixmap=pixmap
)
splash_screen.setWindowFlag(Qt.WindowType.WindowStaysOnTopHint)

splash_screen.show()
_logger.debug("show splash screen")

tray = QSystemTrayIcon()
Expand All @@ -221,6 +219,8 @@ def main():

async def _main():

splash_screen.show()

_logger.debug("Creating runner and crynux_app")
runner = CrynuxRunner()

Expand Down

0 comments on commit 7032c20

Please sign in to comment.