From c295fec105fd4ac0223838084e2db1c7f5e1b0df Mon Sep 17 00:00:00 2001 From: csd4ni3l Date: Fri, 23 May 2025 21:17:14 +0200 Subject: [PATCH] Fix window title --- run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run.py b/run.py index 5182620..f0989fc 100644 --- a/run.py +++ b/run.py @@ -64,7 +64,7 @@ else: with open("settings.json", "w") as file: file.write(json.dumps(settings)) -window = arcade.Window(width=resolution[0], height=resolution[1], title='Game Of Life', samples=antialiasing, antialiasing=antialiasing > 0, fullscreen=fullscreen, vsync=vsync, resizable=False, style=style) +window = arcade.Window(width=resolution[0], height=resolution[1], title='Mandelbrot Viewer', samples=antialiasing, antialiasing=antialiasing > 0, fullscreen=fullscreen, vsync=vsync, resizable=False, style=style) if vsync: window.set_vsync(True)