Skip to content

Instantly share code, notes, and snippets.

@garoto
Last active July 1, 2020 04:01
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save garoto/920b7456d2bdd8f48aa8e7094a12ce47 to your computer and use it in GitHub Desktop.
Save garoto/920b7456d2bdd8f48aa8e7094a12ce47 to your computer and use it in GitHub Desktop.
Restore old "window-scale" behavior, so to make "add window-scale +/-<value>" keybinds work again when paired with autofit-* options
function fix_window_scale()
local cws = mp.get_property("current-window-scale")
if cws then mp.set_property("window-scale", cws) end
end
mp.register_event(
"file-loaded", function () mp.add_timeout(1, fix_window_scale)
end)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment