diff --git a/src/renderer/components/item-list/item-detail-list/utils.ts b/src/renderer/components/item-list/item-detail-list/utils.ts index 2f356d23d..1fd9dc5e5 100644 --- a/src/renderer/components/item-list/item-detail-list/utils.ts +++ b/src/renderer/components/item-list/item-detail-list/utils.ts @@ -60,6 +60,7 @@ export function shouldShowHoverOnlyColumnContent( return ( isRowHovered || (columnId === TableColumn.USER_FAVORITE && song.userFavorite !== false) || - (columnId === TableColumn.USER_RATING && song.userRating != null) + (columnId === TableColumn.USER_RATING && + (song.userRating !== null || song.userRating !== 0)) ); }