summaryrefslogtreecommitdiffstats
path: root/player
diff options
context:
space:
mode:
authorDan Oscarsson <DanOscarsson@users.noreply.github.com>2018-11-28 17:40:02 +0100
committersfan5 <sfan5@live.de>2019-01-16 16:58:15 +0100
commitaab595f828c9e158cd08cadc48ccc6fe9725e464 (patch)
treed2bbe0231364ff6e1bdd4a02bcd627866edebbf8 /player
parentd6d6da4711ca1ad20e14386c4b29a955eb32322d (diff)
downloadmpv-aab595f828c9e158cd08cadc48ccc6fe9725e464.tar.bz2
mpv-aab595f828c9e158cd08cadc48ccc6fe9725e464.tar.xz
command: notify on multiply
doing multiply on a property is also a set property command and the change should be notified so others can observe the change
Diffstat (limited to 'player')
-rw-r--r--player/command.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/player/command.c b/player/command.c
index 7237b08820..add4383ddc 100644
--- a/player/command.c
+++ b/player/command.c
@@ -4151,6 +4151,7 @@ static bool is_property_set(int action, void *val)
case M_PROPERTY_SWITCH:
case M_PROPERTY_SET_STRING:
case M_PROPERTY_SET_NODE:
+ case M_PROPERTY_MULTIPLY:
return true;
case M_PROPERTY_KEY_ACTION: {
struct m_property_action_arg *key = val;