From 361f09c72828e6d54c2a8211bb67f25785dad763 Mon Sep 17 00:00:00 2001 From: Ignacio Rivero Date: Wed, 26 Feb 2025 15:36:47 -0300 Subject: [PATCH] Wayland OSD is fullscreen now, fixes bug where it's off center --- main.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/main.py b/main.py index 88b25bb..31aff2d 100755 --- a/main.py +++ b/main.py @@ -289,7 +289,10 @@ def qt_process(): osd.close_widget() # Create new OSD osd = OsdWidget(command['channel_info']) - osd.show() + if is_wayland: + osd.showFullScreen() + else: + osd.show() elif command['action'] == 'start_close': if osd is not None: osd.start_close_timer()