diff options
author | Romain Bignon <romain@peerfuse.org> | 2009-03-27 15:28:49 +0100 |
---|---|---|
committer | Romain Bignon <romain@peerfuse.org> | 2009-03-27 15:28:49 +0100 |
commit | e7519829ac588e4b261c1832bb0e7d6ffbd47322 (patch) | |
tree | ec9ab205b3a4344b76dcd60dddc8496ed8357cde /src/queue.h | |
parent | e46722b2ebe05fce63bc7b86100c159b5cadd297 (diff) | |
download | mpd-e7519829ac588e4b261c1832bb0e7d6ffbd47322.tar.gz mpd-e7519829ac588e4b261c1832bb0e7d6ffbd47322.tar.xz mpd-e7519829ac588e4b261c1832bb0e7d6ffbd47322.zip |
renamed smartstop to single and changed behavior
When single mode is enabled, after current song it stops playback,
or it replay same song if repeat mode is activated.
Diffstat (limited to '')
-rw-r--r-- | src/queue.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/queue.h b/src/queue.h index 63b71d199..452084ce8 100644 --- a/src/queue.h +++ b/src/queue.h @@ -81,8 +81,8 @@ struct queue { reached? */ bool repeat; - /** stop playing after that song. */ - bool smartstop; + /** play only current song. */ + bool single; /** play back songs in random order? */ bool random; |