<html><head></head><body>This is completely wrong. This is meant to be the configured size. Nothing else and anything else *will* break one settings combination or other.<br><br><div class="gmail_quote">Le 8 novembre 2019 19:56:16 GMT+09:00, Thomas Guillem <thomas@gllm.fr> a écrit :<blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
<pre class="k9mail">This will be needed by the next commit since the cfg->display size will be<br>modified by window plugin events.<br><br>Refs #22674<hr> src/video_output/video_output.c | 6 ++++--<br> 1 file changed, 4 insertions(+), 2 deletions(-)<br><br>diff --git a/src/video_output/video_output.c b/src/video_output/video_output.c<br>index 3d2d78f6f23..db48538fd9c 100644<br>--- a/src/video_output/video_output.c<br>+++ b/src/video_output/video_output.c<br>@@ -643,8 +643,10 @@ static void VoutGetDisplayCfg(vout_thread_t *vout, const video_format_t *fmt, vo<br> <br>     const int display_width = var_GetInteger(vout, "width");<br>     const int display_height = var_GetInteger(vout, "height");<br>-    cfg->display.width   = display_width > 0  ? display_width  : 0;<br>-    cfg->display.height  = display_height > 0 ? display_height : 0;<br>+    if (display_width > 0)<br>+        cfg->display.width = display_width;<br>+    if (display_height > 0)<br>+        cfg->display.height = display_height;<br>     cfg->is_display_filled  = var_GetBool(vout, "autoscale");<br>     unsigned msar_num, msar_den;<br>     if (var_InheritURational(vout, &msar_num, &msar_den, "monitor-par") ||</pre></blockquote></div><br>-- <br>Envoyé de mon appareil Android avec Courriel K-9 Mail. Veuillez excuser ma brièveté.</body></html>