From 18a3f1510136d41396f6b8f0bb67393dea3c876c Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Tue, 22 Nov 2011 02:00:57 +0100 Subject: [PATCH] * Remove bottom label of steering controls. Changes now take effect on clicking the apply button. --- src/libtomahawk/playlist/dynamic/DynamicPlaylist.cpp | 2 +- .../playlist/dynamic/echonest/EchonestSteerer.cpp | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/libtomahawk/playlist/dynamic/DynamicPlaylist.cpp b/src/libtomahawk/playlist/dynamic/DynamicPlaylist.cpp index 5f986662a..728503979 100644 --- a/src/libtomahawk/playlist/dynamic/DynamicPlaylist.cpp +++ b/src/libtomahawk/playlist/dynamic/DynamicPlaylist.cpp @@ -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() ); } } diff --git a/src/libtomahawk/playlist/dynamic/echonest/EchonestSteerer.cpp b/src/libtomahawk/playlist/dynamic/echonest/EchonestSteerer.cpp index 683b097a0..2bf84654a 100644 --- a/src/libtomahawk/playlist/dynamic/echonest/EchonestSteerer.cpp +++ b/src/libtomahawk/playlist/dynamic/echonest/EchonestSteerer.cpp @@ -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 );