mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-08-13 17:43:59 +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
|
unsigned int
|
||||||
Result::bitrate() const
|
Result::bitrate() const
|
||||||
{
|
{
|
||||||
return m_bitrate;
|
return m_bitrate;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
unsigned int
|
unsigned int
|
||||||
Result::size() const
|
Result::size() const
|
||||||
{
|
{
|
||||||
return m_size;
|
return m_size;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
unsigned int
|
unsigned int
|
||||||
Result::modificationTime() const
|
Result::modificationTime() const
|
||||||
{
|
{
|
||||||
return m_modtime;
|
return m_modtime;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void
|
void
|
||||||
Result::setScore( float score )
|
Result::setScore( float score )
|
||||||
{
|
{
|
||||||
m_score = score;
|
m_score = score;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void
|
void
|
||||||
Result::setFileId(unsigned int id)
|
Result::setFileId( unsigned int id )
|
||||||
{
|
{
|
||||||
m_fileId = id;
|
m_fileId = id;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
Tomahawk::Resolver*
|
Tomahawk::Resolver*
|
||||||
Result::resolvedBy() const
|
Result::resolvedBy() const
|
||||||
{
|
{
|
||||||
|
@@ -93,6 +93,8 @@ WhatsHotWidget::WhatsHotWidget( QWidget* parent )
|
|||||||
ui->artistsViewLeft->setHorizontalScrollBarPolicy( Qt::ScrollBarAlwaysOff );
|
ui->artistsViewLeft->setHorizontalScrollBarPolicy( Qt::ScrollBarAlwaysOff );
|
||||||
ui->artistsViewLeft->header()->setVisible( true );
|
ui->artistsViewLeft->header()->setVisible( true );
|
||||||
|
|
||||||
|
// ui->albumsView->setStyleSheet( QString( "QListView { background-color: black; }" ) );
|
||||||
|
|
||||||
m_workerThread = new QThread( this );
|
m_workerThread = new QThread( this );
|
||||||
m_workerThread->start();
|
m_workerThread->start();
|
||||||
|
|
||||||
@@ -117,7 +119,6 @@ WhatsHotWidget::WhatsHotWidget( QWidget* parent )
|
|||||||
ui->stackLeft->setCurrentIndex( 2 );
|
ui->stackLeft->setCurrentIndex( 2 );
|
||||||
m_spinner = new AnimatedSpinner( ui->albumsView );
|
m_spinner = new AnimatedSpinner( ui->albumsView );
|
||||||
m_spinner->fadeIn();
|
m_spinner->fadeIn();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user