From 26dba27778751698c70d2b057a636c93e12148b6 Mon Sep 17 00:00:00 2001 From: Deluan Date: Tue, 26 May 2020 22:02:15 -0400 Subject: [PATCH] Always show song context menu on tablets --- ui/src/album/AlbumSongs.js | 2 +- ui/src/song/SongList.js | 25 +++++++++++-------------- 2 files changed, 12 insertions(+), 15 deletions(-) diff --git a/ui/src/album/AlbumSongs.js b/ui/src/album/AlbumSongs.js index f8556e50c..27ba154ea 100644 --- a/ui/src/album/AlbumSongs.js +++ b/ui/src/album/AlbumSongs.js @@ -131,7 +131,7 @@ const AlbumSongs = (props) => { {...controllerProps} hasBulkActions={hasBulkActions} multiDisc={multiDisc} - contextAlwaysVisible={isXsmall} + contextAlwaysVisible={!isDesktop} > {isDesktop && ( { } rowClick={(id, basePath, record) => dispatch(setTrack(record))} + contextAlwaysVisible={!isDesktop} > {isDesktop && } @@ -86,20 +87,16 @@ const SongList = (props) => { r.year || ''} /> )} - {isDesktop ? ( - - } - sortBy={'starred DESC, starredAt DESC'} - /> - ) : ( - - )} + + } + /> )}