mirror of https://github.com/mpv-player/mpv
stats.lua: set border size to have similar relative thickness as OSD
It is 6% of font size. Little bit more relativelly to OSD, but stats has smaller text, so we need to compensate for that.
This commit is contained in:
parent
8c3a7da619
commit
fedd34e83c
|
@ -165,7 +165,7 @@ Configurable Options
|
||||||
Color of the text.
|
Color of the text.
|
||||||
|
|
||||||
``border_size``
|
``border_size``
|
||||||
Default: 2
|
Default: 1.2
|
||||||
|
|
||||||
Size of border drawn around the font.
|
Size of border drawn around the font.
|
||||||
|
|
||||||
|
|
|
@ -56,7 +56,7 @@ local o = {
|
||||||
font_mono = "monospace", -- monospaced digits are sufficient
|
font_mono = "monospace", -- monospaced digits are sufficient
|
||||||
font_size = 20,
|
font_size = 20,
|
||||||
font_color = "",
|
font_color = "",
|
||||||
border_size = 2,
|
border_size = 1.2,
|
||||||
border_color = "",
|
border_color = "",
|
||||||
shadow_x_offset = 0.0,
|
shadow_x_offset = 0.0,
|
||||||
shadow_y_offset = 0.0,
|
shadow_y_offset = 0.0,
|
||||||
|
|
Loading…
Reference in New Issue