1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-20 15:59:42 +01:00

* Huh, our up- & download images have been reversed.

This commit is contained in:
Christian Muehlhaeuser 2012-12-23 21:10:47 +01:00
parent c2388829bc
commit f923716628

View File

@ -85,9 +85,9 @@ TransferStatusItem::icon() const
return QPixmap();
if ( m_stream.data()->type() == StreamConnection::SENDING )
return m_parent->rxPixmap();
else
return m_parent->txPixmap();
else
return m_parent->rxPixmap();
}