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:
committed by
Michael Zanetti
parent
277edfe8ca
commit
21beba0881
@@ -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
|
||||
{
|
||||
|
@@ -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();
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user