Bug 133544

Summary: field notion in player window is reversed
Product: [Applications] amarok Reporter: richlv
Component: generalAssignee: Amarok Developers <amarok-bugs-dist>
Status: RESOLVED FIXED    
Severity: normal    
Priority: NOR    
Version: unspecified   
Target Milestone: ---   
Platform: Slackware   
OS: Linux   
Latest Commit: Version Fixed In:

Description richlv 2006-09-04 14:08:24 UTC
Version:           svn 580676 (using KDE KDE 3.5.4)
Installed from:    Slackware Packages
OS:                Linux

player window has notion "Title - Artist | Album Length", which seems to tell what fields are displayed below.

the actual information is reversed, though - it is "Artist - Title | Album Length".

i'm sorry, if i have misunderstood the meaning of the text at the top of the player window, though ;)
Comment 1 Maximilian Kossick 2006-11-30 21:58:40 UTC
SVN commit 609451 by mkossick:

fixed order of fields in the player window
BUG: 133544

 M  +1 -1      playerwindow.cpp  


--- trunk/extragear/multimedia/amarok/src/playerwindow.cpp #609450:609451
@@ -189,7 +189,7 @@
     m_pTimeSign    = createWidget<QLabel>( QRect(6,40, 10,10), this, 0, Qt::WRepaintNoErase );
     m_pVolSign     = createWidget<QLabel>( QRect(295,7, 9,8),  this );
 
-    m_pDescription->setText( i18n( "Title-Artist|Album|Length" ) );
+    m_pDescription->setText( i18n( "Artist-Title|Album|Length" ) );
     m_pVolSign    ->setPixmap( getPNG( "vol_speaker" ) );