<div dir="ltr"><div>This patch will fix the OSDEpg (triggered by the "position" hotkey.) not showing text information because of transparent alpha value and invalid font size.<br></div><div>The argument size of the vout_OSDEpgText function is already in pixels and not relative, so p_style->i_font_size is the correct style option.<br></div><div><div><div><div><br>diff --git a/src/video_output/video_epg.c b/src/video_output/video_epg.c<br>index 720ff35..9e6aa65 100644<br>--- a/src/video_output/video_epg.c<br>+++ b/src/video_output/video_epg.c<br>@@ -133,9 +133,9 @@ static subpicture_region_t * vout_OSDEpgText(const char *text,<br>     }<br>     region->p_text->style = p_style;<br>     if (p_style) {<br>-        p_style->f_font_relsize  = __MIN( size, 0 );<br>+        p_style->i_font_size  = __MAX(size ,1 );<br>         p_style->i_font_color = color;<br>-        p_style->i_font_alpha = 0;<br>+        p_style->i_font_alpha = STYLE_ALPHA_OPAQUE;<br>         p_style->i_features |= STYLE_HAS_FONT_ALPHA | STYLE_HAS_FONT_COLOR;<br>     }<br><br></div></div></div></div></div>