Added reporting of the repeat mode.

This commit is contained in:
Jonathan Bernard 2016-04-04 06:17:19 -05:00
parent 2ec81b34ea
commit cb29844d9c

View File

@ -889,14 +889,24 @@ Configuration:
private def processRepeat(String option) {
switch(option) {
case 'null':
def mode = vlcj.mediaListPlayer.mode
msg("Repeat mode is: " +
mode == MediaListPlayerMode.REPEAT ? 'all.' :
(mode == MediaListPlayerMode.LOOP ? 'one.' : 'off.'))
return
case 'off':
vlcj.mediaListPlayer.mode = MediaListPlayerMode.DEFAULT
msg "Repeat set to off."
break
case 'all':
vlcj.mediaListPlayer.mode = MediaListPlayerMode.REPEAT
msg "Repeat set to all."
break
case 'one':
vlcj.mediaListPlayer.mode = MediaListPlayerMode.LOOP
msg "Repeat set to one."
break
default: invalidOptionsErr('repeat') } }