Commit 99748d1f authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Hotkeys: add missing break in switch

parent 745c83a0
......@@ -265,6 +265,7 @@ static int PutAction( intf_thread_t *p_intf, int i_action )
vlc_object_t *obj = p_vout ? VLC_OBJECT(p_vout)
: VLC_OBJECT(p_playlist);
var_ToggleBool( obj, "directx-wallpaper" );
break;
}
#endif
......@@ -286,6 +287,7 @@ static int PutAction( intf_thread_t *p_intf, int i_action )
case ACTIONID_RANDOM:
{
var_ToggleBool( p_playlist, "random" );
break;
}
case ACTIONID_PLAY_PAUSE:
......
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