We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2316a7f + 7df709e commit f1509b8Copy full SHA for f1509b8
.github/workflows/build.yml
@@ -4,6 +4,8 @@ on:
4
push:
5
branches:
6
- master
7
+ tags:
8
+ - 'v*'
9
pull_request:
10
11
jobs:
friture/analyzer.py
@@ -492,7 +492,10 @@ def main():
492
window = Friture()
493
window.show()
494
if not program_arguments.no_splash:
495
- splash.finish(window)
+ if platform.system() == "Linux":
496
+ splash.hide()
497
+ else:
498
+ splash.finish(window)
499
500
profile = "no" # "python" or "kcachegrind" or anything else to disable
501
0 commit comments