Skip to content

Commit 456549a

Browse files
authored
Merge pull request #374 from tlecomte/hideSplash
fix: hide splash, version 0.53
2 parents 04e9966 + 9bb0047 commit 456549a

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

friture/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# along with Friture. If not, see <http://www.gnu.org/licenses/>.
1919

2020
# version and date
21-
__version__ = "0.52"
22-
__releasedate__ = "2025-08-31"
21+
__version__ = "0.53"
22+
__releasedate__ = "2025-09-08"
2323

2424
__all__ = ["plotting"]

friture/analyzer.py

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

500497
profile = "no" # "python" or "kcachegrind" or anything else to disable
501498

0 commit comments

Comments
 (0)