mirror of
https://github.com/ultrasonic/ultrasonic
synced 2025-02-16 11:41:16 +01:00
fixed failed ultrasonic:ktlintMainSourceSetCheck
Signed-off-by: Holger Müller <github@euhm.de>
This commit is contained in:
parent
8f18192c36
commit
cc5f29ca98
@ -992,17 +992,20 @@ class PlayerFragment :
|
||||
)
|
||||
currentSong!!.suffix
|
||||
else
|
||||
String.format(Locale.ROOT, "%s > %s", currentSong!!.suffix,
|
||||
currentSong!!.transcodedSuffix)
|
||||
String.format(
|
||||
Locale.ROOT, "%s > %s", currentSong!!.suffix,
|
||||
currentSong!!.transcodedSuffix
|
||||
)
|
||||
val details: String = String.format(
|
||||
Util.appContext().getString(R.string.song_details_nowplaying),
|
||||
currentSong!!.genre, currentSong!!.year, currentSong!!.bitRate, fileFormat
|
||||
)
|
||||
detailsTextView.text = details
|
||||
if (Settings.showNowPlayingDetails)
|
||||
detailsTextView.visibility = View.VISIBLE
|
||||
else
|
||||
detailsTextView.visibility = View.GONE
|
||||
detailsTextView.visibility =
|
||||
if (Settings.showNowPlayingDetails)
|
||||
View.VISIBLE
|
||||
else
|
||||
View.GONE
|
||||
|
||||
downloadTrackTextView.text = trackFormat
|
||||
downloadTotalDurationTextView.text = duration
|
||||
|
Loading…
x
Reference in New Issue
Block a user