X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/blobdiff_plain/e7eb3a2744aa45179daea235800753d3d1955338..8484d1bf363e3f2f45e28939aca71f5676e57c81:/disobedience/queue.c diff --git a/disobedience/queue.c b/disobedience/queue.c index 0e65245..bf77fd0 100644 --- a/disobedience/queue.c +++ b/disobedience/queue.c @@ -15,6 +15,9 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ +/** @file disobedience/queue.c + * @brief Disobedience queue widget + */ #include "disobedience.h" #include "popup.h" #include "queue-generic.h" @@ -38,8 +41,6 @@ static void playing_completed(void *v, /** @brief Called when either the actual queue or the playing track change */ static void queue_playing_changed(void) { - const char *old_id = playing_track ? playing_track->id : 0; - /* Check that the playing track isn't in the queue. There's a race here due * to the fact that we issue the two commands at slightly different times. * If it goes wrong we re-issue and try again, so that we never offer up an @@ -65,8 +66,6 @@ static void queue_playing_changed(void) { playing_track = NULL; q = actual_queue; } - if(!old_id || !playing_track || strcmp(old_id, playing_track->id)) - time(&last_playing); /* for column_length() */ ql_new_queue(&ql_queue, q); /* Tell anyone who cares */ event_raise("queue-list-changed", q); @@ -95,6 +94,7 @@ static void playing_completed(void attribute((unused)) *v, } actual_playing_track = q; queue_playing_changed(); + time(&last_playing); } /** @brief Schedule an update to the queue @@ -163,6 +163,7 @@ static struct menuitem queue_menuitems[] = { { "Deselect all tracks", ql_selectnone_activate, ql_selectnone_sensitive, 0, 0 }, { "Scratch playing track", ql_scratch_activate, ql_scratch_sensitive, 0, 0 }, { "Remove track from queue", ql_remove_activate, ql_remove_sensitive, 0, 0 }, + { "Adopt track", ql_adopt_activate, ql_adopt_sensitive, 0, 0 }, }; struct queuelike ql_queue = {