Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions usr/lib/hypnotix/hypnotix.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down Expand Up @@ -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()
Expand Down
Loading