From 73cf6ced716f8607aacff8f026cedf57f3c2d9a1 Mon Sep 17 00:00:00 2001 From: csd4ni3l Date: Sat, 13 Dec 2025 15:30:52 +0100 Subject: [PATCH] Fix window title --- run.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/run.py b/run.py index f1e453c..d157524 100644 --- a/run.py +++ b/run.py @@ -92,10 +92,10 @@ else: file.write(json.dumps(settings)) try: - window = ControllerWindow(width=resolution[0], height=resolution[1], title='GameName', samples=antialiasing, antialiasing=antialiasing > 0, fullscreen=fullscreen, vsync=vsync, resizable=False, style=style, visible=False) + window = ControllerWindow(width=resolution[0], height=resolution[1], title='FractalViewer', samples=antialiasing, antialiasing=antialiasing > 0, fullscreen=fullscreen, vsync=vsync, resizable=False, style=style, visible=False) except (FileNotFoundError, PermissionError) as e: logging.warning(f"Controller support unavailable: {e}. Falling back to regular window.") - window = arcade.Window(width=resolution[0], height=resolution[1], title='GameName', samples=antialiasing, antialiasing=antialiasing > 0, fullscreen=fullscreen, vsync=vsync, resizable=False, style=style, visible=False) + window = arcade.Window(width=resolution[0], height=resolution[1], title='FractalViewer', samples=antialiasing, antialiasing=antialiasing > 0, fullscreen=fullscreen, vsync=vsync, resizable=False, style=style, visible=False) if vsync: window.set_vsync(True)