Commit 8ff53dcc authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Fix OSD when auto-scaling

Close #6423
(cherry picked from commit 36641267bcfd98f26eaa0ae98ba7ac5d80d4184b)
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 9384f831
......@@ -573,7 +573,7 @@ static int PutAction( intf_thread_t *p_intf, int i_action )
{
bool b_autoscale = !var_GetBool( p_vout, "autoscale" );
var_SetBool( p_vout, "autoscale", b_autoscale );
if( !b_autoscale )
if( b_autoscale )
DisplayMessage( p_vout, SPU_DEFAULT_CHANNEL,
"%s", _("Scaled to screen") );
else
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment