summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--player/lua/osc.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/player/lua/osc.lua b/player/lua/osc.lua
index d5aa736de7..dc387f65f1 100644
--- a/player/lua/osc.lua
+++ b/player/lua/osc.lua
@@ -148,7 +148,7 @@ function kill_animation()
state.anitype = nil
end
-function set_osd(res_x, res_y, text)
+function set_osd(res_x, res_y, text, z)
if state.osd.res_x == res_x and
state.osd.res_y == res_y and
state.osd.data == text then
@@ -157,7 +157,7 @@ function set_osd(res_x, res_y, text)
state.osd.res_x = res_x
state.osd.res_y = res_y
state.osd.data = text
- state.osd.z = 1000
+ state.osd.z = z
state.osd:update()
end
@@ -2480,7 +2480,7 @@ function render()
-- submit
set_osd(osc_param.playresy * osc_param.display_aspect,
- osc_param.playresy, ass.text)
+ osc_param.playresy, ass.text, 1000)
end
--
@@ -2636,7 +2636,7 @@ function tick()
ass:an(8)
ass:append("Drop files or URLs to play here.")
end
- set_osd(display_w, display_h, ass.text)
+ set_osd(display_w, display_h, ass.text, -1000)
if state.showhide_enabled then
mp.disable_key_bindings("showhide")