summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-06-29 01:32:38 +0200
committerwm4 <wm4@nowhere>2013-06-29 22:58:14 +0200
commit00b0f42c42724346190d350e8801e19d8d7b9a23 (patch)
treee4e31578fe577503fb111c234d750326082c2181
parentf1fc60b32d2767df7bdfedb65f211246a49f0bcd (diff)
downloadmpv-00b0f42c42724346190d350e8801e19d8d7b9a23.tar.bz2
mpv-00b0f42c42724346190d350e8801e19d8d7b9a23.tar.xz
command: redraw subs if sub-delay is changed
Though in practice this probably happened anyway, because OSD was redrawn.
-rw-r--r--core/command.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/command.c b/core/command.c
index 9c56b412fd..f273bda2b2 100644
--- a/core/command.c
+++ b/core/command.c
@@ -1433,7 +1433,7 @@ static int mp_property_sub_delay(m_option_t *prop, int action, void *arg,
*(char **)arg = format_delay(opts->sub_delay);
return M_PROPERTY_OK;
}
- return mp_property_generic_option(prop, action, arg, mpctx);
+ return property_osd_helper(prop, action, arg, mpctx);
}
static int mp_property_sub_pos(m_option_t *prop, int action, void *arg,