X-Git-Url: https://git.distorted.org.uk/~mdw/disorder/blobdiff_plain/1583d68f64828f4fe7f8b1e135258f5610e87199..b0b15b7ced28b3c6ddfcd4b0a7e46ee6432a243c:/disobedience/recent.c?ds=sidebyside diff --git a/disobedience/recent.c b/disobedience/recent.c index 1f3e667..ea7b26e 100644 --- a/disobedience/recent.c +++ b/disobedience/recent.c @@ -66,12 +66,12 @@ static void recent_init(void) { /** @brief Columns for the recently-played list */ static const struct queue_column recent_columns[] = { - { "When", column_when, 0, 1 }, + { "When", column_when, 0, COL_RIGHT }, { "Who", column_who, 0, 0 }, - { "Artist", column_namepart, "artist", 0 }, - { "Album", column_namepart, "album", 0 }, - { "Title", column_namepart, "title", 0 }, - { "Length", column_length, 0, 1 } + { "Artist", column_namepart, "artist", COL_EXPAND|COL_ELLIPSIZE }, + { "Album", column_namepart, "album", COL_EXPAND|COL_ELLIPSIZE }, + { "Title", column_namepart, "title", COL_EXPAND|COL_ELLIPSIZE }, + { "Length", column_length, 0, COL_RIGHT } }; /** @brief Pop-up menu for recently played list */