diff --git a/usr/lib/hypnotix/hypnotix.py b/usr/lib/hypnotix/hypnotix.py index 4885ac5..f52a563 100755 --- a/usr/lib/hypnotix/hypnotix.py +++ b/usr/lib/hypnotix/hypnotix.py @@ -1652,6 +1652,7 @@ def on_mpv_drawing_area_draw(self, widget, cr): cr.paint() def normal_mode(self): + self.window.get_window().set_cursor(None) self.window.unfullscreen() self.mpv_top_box.show() self.mpv_bottom_box.hide() @@ -1689,6 +1690,7 @@ def full_screen_mode(self): if self.stack.get_visible_child_name() == "channels_page": self.fullscreen = not self.fullscreen if self.fullscreen: + self.window.get_window().set_cursor(Gdk.Cursor.new_from_name(Gdk.Display.get_default(), "none")) # Fullscreen mode self.window.fullscreen() self.mpv_top_box.hide()