| Summary: | field notion in player window is reversed | ||
|---|---|---|---|
| Product: | [Applications] amarok | Reporter: | richlv |
| Component: | general | Assignee: | Amarok Bugs <amarok-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Slackware | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
richlv
2006-09-04 14:08:24 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" ) );
|