rearrange sequence of arguments to Scroller()

This commit is contained in:
Andrzej Rybczak
2009-08-26 03:33:31 +02:00
parent d92d7779e2
commit 89e18096d9
5 changed files with 8 additions and 8 deletions

View File

@@ -119,7 +119,7 @@ std::basic_string<my_char_t> Playlist::Title()
std::basic_string<my_char_t> result = U("Playlist ");
if (ReloadTotalLength || ReloadRemaining)
itsBufferedStats = TotalLength();
result += Scroller(itsBufferedStats, w->GetWidth()-result.length()-(Config.new_design ? 2 : VolumeState.length()), itsScrollBegin);
result += Scroller(itsBufferedStats, itsScrollBegin, w->GetWidth()-result.length()-(Config.new_design ? 2 : VolumeState.length()));
return result;
}