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

* Remove bottom label of steering controls. Changes now take effect on clicking the apply button.

This commit is contained in:
Christian Muehlhaeuser 2011-11-22 02:00:57 +01:00
parent eba1505e1d
commit 18a3f15101
2 changed files with 5 additions and 5 deletions

View File

@ -172,7 +172,7 @@ DynamicPlaylist::createNewRevision( const QString& newUuid )
}
else if( mode() == OnDemand )
{
createNewRevision( newUuid.isEmpty() ? uuid() : newUuid, currentrevision(), type(), generator()->controls());
createNewRevision( newUuid.isEmpty() ? uuid() : newUuid, currentrevision(), type(), generator()->controls() );
}
}

View File

@ -60,10 +60,10 @@ EchonestSteerer::EchonestSteerer( QWidget* parent )
f.setBold( true );
m_steerTop->setFont( f );
m_textL->addWidget( m_steerTop );
m_steerBottom = new QLabel( tr( "Takes effect on track change" ), this );
f.setPointSize( f.pointSize() - 3 );
m_steerBottom->setFont( f );
m_textL->addWidget( m_steerBottom );
// m_steerBottom = new QLabel( tr( "Takes effect on track change" ), this );
// f.setPointSize( f.pointSize() - 3 );
// m_steerBottom->setFont( f );
// m_textL->addWidget( m_steerBottom );
m_layout->addLayout( m_textL, 1 );