don't round image in TrackCardTile

This commit is contained in:
Pato05 2024-04-29 00:36:40 +02:00
parent f7283a6633
commit 8ea6bcd073
No known key found for this signature in database
GPG key ID: F53CA394104BA0CB

View file

@ -82,7 +82,7 @@ class TrackCardTile extends StatelessWidget {
onLongPress: normalizeSecondary(onSecondary), onLongPress: normalizeSecondary(onSecondary),
onSecondaryTapUp: onSecondary, onSecondaryTapUp: onSecondary,
child: Row(mainAxisSize: MainAxisSize.min, children: [ child: Row(mainAxisSize: MainAxisSize.min, children: [
CachedImage(url: artUri), CachedImage(url: artUri, rounded: false),
Expanded( Expanded(
child: Padding( child: Padding(
padding: const EdgeInsets.symmetric(horizontal: 16.0), padding: const EdgeInsets.symmetric(horizontal: 16.0),