1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-12 17:14:00 +02:00

* Style fixes.

This commit is contained in:
Christian Muehlhaeuser
2013-06-20 09:31:03 +02:00
committed by Michael Zanetti
parent 277edfe8ca
commit 21beba0881
2 changed files with 9 additions and 2 deletions

View File

@@ -429,36 +429,42 @@ Result::sourceIcon( TomahawkUtils::ImageMode style, const QSize& desiredSize ) c
}
}
unsigned int
Result::bitrate() const
{
return m_bitrate;
}
unsigned int
Result::size() const
{
return m_size;
}
unsigned int
Result::modificationTime() const
{
return m_modtime;
}
void
Result::setScore( float score )
{
m_score = score;
}
void
Result::setFileId(unsigned int id)
Result::setFileId( unsigned int id )
{
m_fileId = id;
}
Tomahawk::Resolver*
Result::resolvedBy() const
{

View File

@@ -93,6 +93,8 @@ WhatsHotWidget::WhatsHotWidget( QWidget* parent )
ui->artistsViewLeft->setHorizontalScrollBarPolicy( Qt::ScrollBarAlwaysOff );
ui->artistsViewLeft->header()->setVisible( true );
// ui->albumsView->setStyleSheet( QString( "QListView { background-color: black; }" ) );
m_workerThread = new QThread( this );
m_workerThread->start();
@@ -117,7 +119,6 @@ WhatsHotWidget::WhatsHotWidget( QWidget* parent )
ui->stackLeft->setCurrentIndex( 2 );
m_spinner = new AnimatedSpinner( ui->albumsView );
m_spinner->fadeIn();
}