QUOTE(turzol @ Mar 11 2005, 02:36 AM)
My config is
plisk_0.1.5.fcs with orginal dark colour scheme. I've just changed some text colours in Globals/Variables:
But as you can see there is a little bug in bitrate column when song is already playing
"br" column in that config :
CODE
$if(%_isplaying%,%__bitrate_dynamic%,%__bitrate%)
This means when song is playing it shows bitrate dynamically (only if the track is VBR-encoded), so it can't display at CBR file.
So this will be a fix :
CODE
$if(%_isplaying%,$if2(%__bitrate_dynamic%,%__bitrate%),%__bitrate%)
or if don't want to show dynamically,
CODE
$if2(%__bitrate%,)
I'm using latter.