Implement "o" to show overlay for a bit

This commit is contained in:
Jan Hamal Dvořák 2025-03-13 22:31:02 +01:00
parent 6e600099cc
commit 1a92ded9a1

View file

@ -324,6 +324,10 @@ class MainWindow(Gtk.ApplicationWindow, Watcher):
self.player.seek_end()
return True
elif keyval == Gdk.keyval_from_name("o"):
self.player.last_user_input.value = self.now
return True
elif keyval == Gdk.keyval_from_name("j"):
has_subs, index, lang = self.player.cycle_subtitles()