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:
Kacper Michajłow 2024-10-30 01:08:12 +01:00 committed by sfan5
parent 8c3a7da619
commit fedd34e83c
2 changed files with 2 additions and 2 deletions

View File

@ -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.

View File

@ -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,