mirror of
https://github.com/mpv-player/mpv
synced 2025-03-25 04:38:01 +00: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:
parent
d0bc907806
commit
a19aefac37
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user