diff --git a/DOCS/man/console.rst b/DOCS/man/console.rst index f37eddfaaa..42d068cf5a 100644 --- a/DOCS/man/console.rst +++ b/DOCS/man/console.rst @@ -164,7 +164,7 @@ Configurable Options the window. ``border_size`` - Default: 1.32 + Default: 1.65 Set the font border size used for the REPL and the console. diff --git a/DOCS/man/options.rst b/DOCS/man/options.rst index 563d1d01c7..be9fbbed75 100644 --- a/DOCS/man/options.rst +++ b/DOCS/man/options.rst @@ -2925,7 +2925,7 @@ Subtitles ``--sub-border-size`` is an alias for ``--sub-outline-size``. - Default: 2.09 + Default: 1.65 ``--sub-border-style=`` The style of the border. diff --git a/DOCS/man/stats.rst b/DOCS/man/stats.rst index 9f204980f9..1d9a8c46a7 100644 --- a/DOCS/man/stats.rst +++ b/DOCS/man/stats.rst @@ -165,7 +165,7 @@ Configurable Options Color of the text. ``border_size`` - Default: 1.2 + Default: 1.65 Size of border drawn around the font. diff --git a/player/lua/console.lua b/player/lua/console.lua index 4e2ff3e71c..265a1512f9 100644 --- a/player/lua/console.lua +++ b/player/lua/console.lua @@ -31,7 +31,7 @@ local platform = detect_platform() local opts = { font = "", font_size = 24, - border_size = 1.32, + border_size = 1.65, scale_with_window = "auto", case_sensitive = platform ~= 'windows' and true or false, history_dedup = true, diff --git a/player/lua/stats.lua b/player/lua/stats.lua index 5cc2675e73..67d5b737ee 100644 --- a/player/lua/stats.lua +++ b/player/lua/stats.lua @@ -56,7 +56,7 @@ local o = { font_mono = "monospace", -- monospaced digits are sufficient font_size = 20, font_color = "", - border_size = 1.2, + border_size = 1.65, border_color = "", shadow_x_offset = 0.0, shadow_y_offset = 0.0, diff --git a/sub/osd.c b/sub/osd.c index 25a8981e16..d87cc31c69 100644 --- a/sub/osd.c +++ b/sub/osd.c @@ -106,7 +106,7 @@ const struct m_sub_options sub_style_conf = { .outline_color = {0, 0, 0, 255}, .back_color = {240, 240, 240, 128}, .border_style = 1, - .outline_size = 2.09, + .outline_size = 1.65, .shadow_offset = 0, .margin_x = 19, .margin_y = 34,