You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ass_overlay=mp.create_osd_overlay("ass-events")
ass_overlay.data="This should go away in one second."ass_overlay.hidden=trueass_overlay:update()
localfunctionass_overlay_on()
ass_overlay.hidden=falseass_overlay:update()
endlocalfunctionass_overlay_off()
ass_overlay.hidden=trueass_overlay:update()
endlocalfunctiontest_overlay_async()
ass_overlay_on()
mp.add_timeout(1, ass_overlay_off)
endmp.add_key_binding("0", "test_overlay_async", test_overlay_async)
Important Information
Reproduction steps
0
.Expected behavior
The overlay should disappear in one second.
Actual behavior
The overlay does not disappear unless playback is resumed.
Additional Info
Per another IRC user's testing, if you modify this function like so:
it works as expected again.
The text was updated successfully, but these errors were encountered: