[vlc-devel] [PATCH 3/5] hotkeys: Set sub-text-scale variable on playlist level
david.fuhrmann at gmail.com
david.fuhrmann at gmail.com
Fri Jun 16 15:46:30 CEST 2017
From: David Fuhrmann <dfuhrmann at videolan.org>
This makes sure it outlives vout instances and is valid for the
whole playlist session.
hotkeys: Set sub-text-scale variable on playlist level
This makes sure it outlives vout instances and is valid for the
whole playlist session.
---
modules/control/hotkeys.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/control/hotkeys.c b/modules/control/hotkeys.c
index 4f6611c..7021e9c 100644
--- a/modules/control/hotkeys.c
+++ b/modules/control/hotkeys.c
@@ -1343,11 +1343,11 @@ static int PutAction( intf_thread_t *p_intf, input_thread_t *p_input,
}
else
{
- i_scale = var_GetInteger( p_vout, "sub-text-scale" );
+ i_scale = var_GetInteger( p_playlist, "sub-text-scale" );
i_scale += ((i_action == ACTIONID_SUBTITLE_TEXT_SCALE_UP) ? 1 : -1) * 25;
i_scale = VLC_CLIP( i_scale, 10, 500 );
}
- var_SetInteger( p_vout, "sub-text-scale", i_scale );
+ var_SetInteger( p_playlist, "sub-text-scale", i_scale );
DisplayMessage( p_vout, _( "Subtitle text scale %d%%" ), i_scale );
}
}
--
2.7.4 (Apple Git-66)
More information about the vlc-devel
mailing list