Skip to content

Commit f1509b8

Browse files
authored
Merge pull request #368 from tlecomte/splashLinux
fix: splash screen freezes on Linux
2 parents 2316a7f + 7df709e commit f1509b8

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ on:
44
push:
55
branches:
66
- master
7+
tags:
8+
- 'v*'
79
pull_request:
810

911
jobs:

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)