[vlc-devel] [PATCH] vout_intf: use same autoscale string for the title as autoscale core variable

Steve Lhomme robux4 at ycbcr.xyz
Fri Nov 13 16:56:18 CET 2020


---
 src/video_output/vout_intf.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/video_output/vout_intf.c b/src/video_output/vout_intf.c
index 1c8159ce21e..76bdfc048e0 100644
--- a/src/video_output/vout_intf.c
+++ b/src/video_output/vout_intf.c
@@ -170,7 +170,7 @@ void vout_CreateVars( vout_thread_t *p_vout )
     /* Add variables to manage scaling video */
     var_Create( p_vout, "autoscale", VLC_VAR_BOOL | VLC_VAR_DOINHERIT
                 | VLC_VAR_ISCOMMAND );
-    var_Change( p_vout, "autoscale", VLC_VAR_SETTEXT, _("Autoscale video") );
+    var_Change( p_vout, "autoscale", VLC_VAR_SETTEXT, _("Video Auto Scaling") );
 
     var_Create( p_vout, "zoom", VLC_VAR_FLOAT | VLC_VAR_ISCOMMAND |
                 VLC_VAR_DOINHERIT );
-- 
2.26.2



More information about the vlc-devel mailing list