stats: make a warning more visible

Print it to console and especially OSD upon each invocation
This commit is contained in:
Julian 2016-05-18 14:51:02 +09:00 committed by wm4
parent a87af63365
commit c387b1db6f
1 changed files with 3 additions and 1 deletions

View File

@ -304,5 +304,7 @@ mp.add_key_binding(o.key_oneshot, "display_stats", print_stats, {repeatable=true
if pcall(function() timer:is_enabled() end) then
mp.add_key_binding(o.key_toggle, "display_stats_toggle", toggle_stats, {repeatable=false})
else
print("To use continious display of stats please upgrade mpv")
local txt = "Please upgrade mpv to toggle stats"
mp.add_key_binding(o.key_toggle, "display_stats_toggle",
function() print(txt) ; mp.osd_message(txt) end, {repeatable=false})
end