0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-19 19:42:24 +02:00

osc: fix margin for forced-only subs toggle in bar layout

This ensures the spacing between forced-only sub toggle button and the
volume button matches the spacing between the volume and the fullscreen
button on bottombar/topbar layouts
This commit is contained in:
llyyr 2023-08-27 21:16:35 +05:30 committed by Dudemanguy
parent d0bc907806
commit a19aefac37

View File

@ -1632,7 +1632,8 @@ function bar_layout(direction)
-- Forced-subs-only button
sub_codec = mp.get_property("current-tracks/sub/codec")
if (sub_codec == "dvd_subtitle" or sub_codec == "hdmv_pgs_subtitle") then
geo = { x = geo.x - geo.w - padX, y = geo.y, an = geo.an, w = geo.w, h = geo.h }
geo = { x = geo.x - geo.w - padX - 10,
y = geo.y, an = geo.an, w = geo.w, h = geo.h }
lo = add_layout("tog_forced_only")
lo.geometry = geo
lo.style = osc_styles.smallButtonsBar