From ef66a8613ddc0584a1f08696261f62c19cd7db6e Mon Sep 17 00:00:00 2001 From: Florrie Date: Fri, 13 Mar 2020 12:09:15 -0300 Subject: display duration in track context menu --- ui.js | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'ui.js') diff --git a/ui.js b/ui.js index 81108aa..f9f066e 100644 --- a/ui.js +++ b/ui.js @@ -1000,12 +1000,10 @@ class AppElement extends FocusElement { items = [ // A label that just shows some brief information about the item. {label: - `(${item.name ? `"${item.name}"` : 'Unnamed'}` + - (isGroup(item) ? ( - ' -' + - ` ${numTracks} track${numTracks === 1 ? '' : 's'}` + - `, ${durationString}`) - : '') + ')', + `(${item.name ? `"${item.name}"` : 'Unnamed'} - ` + + (isGroup(item) ? ` ${numTracks} track${numTracks === 1 ? '' : 's'}, ` : '') + + durationString + + ')', keyboardIdentifier: item.name }, -- cgit 1.3.0-6-gf8a5