1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-26 17:12:36 +00:00

status-line.lua: fix unused variable warning

This commit is contained in:
Kacper Michajłow 2024-05-12 02:27:10 +02:00
parent 0f7aab534a
commit c431b532b8

View File

@ -80,7 +80,7 @@ end
timer = mp.add_periodic_timer(1, update_status_line)
function on_pause_change(name, value)
function on_pause_change(_, value)
if value == false then
timer:resume()
else