Commit 0dc62cd1 authored by Zoran Turalija's avatar Zoran Turalija Committed by Rémi Denis-Courmont

hotkeys: Added OSD messages for toggle repeat playlist action.

Resolves part of ticket #7933
Signed-off-by: default avatarRémi Denis-Courmont <remi@remlab.net>
parent b36bf4ee
......@@ -186,8 +186,12 @@ static int PutAction( intf_thread_t *p_intf, int i_action )
break;
case ACTIONID_RANDOM:
var_ToggleBool( p_playlist, "random" );
{
const bool state = var_ToggleBool( p_playlist, "random" );
DisplayMessage( p_vout, _("Random: %s"),
vlc_gettext( state ? N_("On") : N_("Off") ) );
break;
}
case ACTIONID_NEXT:
DisplayMessage( p_vout, _("Next") );
......
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