Commit: fe14a2232de79fc5b67a93576219587c44b69ea7 Parent: 2159fe3fc91c6e0c371c50e8b830fd8d494ab300 Author: Ren Tatsumoto Date: Sat, 8 Aug 2020 06:46:29 +0300 style Diffstat:
| M | subs2srs.lua | | | 3 | ++- |
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/subs2srs.lua b/subs2srs.lua @@ -363,7 +363,8 @@ subs.set_starting_point = function() subs.list = {} mp.observe_property("sub-text", "string", subs.append) - local starting_point = seconds_to_human_readable_time(subs.get_current()['start']) + local starting_point = subs.get_current()['start'] + starting_point = seconds_to_human_readable_time(starting_point) mp.osd_message("Starting point is set to " .. starting_point, 2) end