Skip to content

Commit 7df709e

Browse files
committed
fix: splash screen freezes on Linux
1 parent 9284e87 commit 7df709e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

friture/analyzer.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -492,7 +492,10 @@ def main():
492492
window = Friture()
493493
window.show()
494494
if not program_arguments.no_splash:
495-
splash.finish(window)
495+
if platform.system() == "Linux":
496+
splash.hide()
497+
else:
498+
splash.finish(window)
496499

497500
profile = "no" # "python" or "kcachegrind" or anything else to disable
498501

0 commit comments

Comments
 (0)