summaryrefslogtreecommitdiffstats
path: root/player/command.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2016-09-22 20:35:48 +0200
committerwm4 <wm4@nowhere>2016-09-22 20:57:06 +0200
commitefbfc00741d36e9de8b724e615c5b723bcf28f20 (patch)
treeb6180305f7c0c6eddb14aa1765c28b8c324ab31a /player/command.c
parent6fe83fdc339aad0b5ddadbe55d25c57bc490640e (diff)
downloadmpv-efbfc00741d36e9de8b724e615c5b723bcf28f20.tar.bz2
mpv-efbfc00741d36e9de8b724e615c5b723bcf28f20.tar.xz
command: fix missing update notifications in some cases
Diffstat (limited to 'player/command.c')
-rw-r--r--player/command.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/player/command.c b/player/command.c
index fc40740b16..2296c97f7b 100644
--- a/player/command.c
+++ b/player/command.c
@@ -327,6 +327,7 @@ int mp_on_set_option(void *ctx, struct m_config_option *co, void *data, int flag
return 0;
direct_option:
+ mp_notify_property(mpctx, name);
return m_config_set_option_raw_direct(mpctx->mconfig, co, data, flags);
}