summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--player/lua/osc.lua4
1 files changed, 3 insertions, 1 deletions
diff --git a/player/lua/osc.lua b/player/lua/osc.lua
index 3c9337da8e..8701f4acd0 100644
--- a/player/lua/osc.lua
+++ b/player/lua/osc.lua
@@ -2486,8 +2486,10 @@ function process_event(source, what)
if element_has_action(elements[n], action) then
elements[n].eventresponder[action](elements[n])
end
- request_tick()
end
+
+ -- ensure rendering after any (mouse) event - icons could change etc
+ request_tick()
end