Bug 133544 - field notion in player window is reversed
Summary: field notion in player window is reversed
Status: RESOLVED FIXED
Alias: None
Product: amarok
Classification: Applications
Component: general (show other bugs)
Version: unspecified
Platform: Slackware Linux
: NOR normal
Target Milestone: ---
Assignee: Amarok Developers
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-09-04 14:08 UTC by richlv
Modified: 2006-11-30 21:58 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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" ) );