Version: 1.4.2 (using KDE KDE 3.5.4) Installed from: Gentoo Packages When playing a Last.fm stream, the pause button is greyed out. But "internal", pause still works (when using dcop, the Mediacontrol Kicker applet, the keyboard shortcut for "pause", ...). Please fix this, as I often accidentally push "Meta+C" or the pause button at the Mediacontrol Kicker applet while playing a Last.fm stream.
SVN commit 605024 by seb: Forbid pausing the engine when using lastfm. Now pause can't be issued from dcop or shortcuts. BUG: 133013 M +1 -1 enginecontroller.cpp --- trunk/extragear/multimedia/amarok/src/enginecontroller.cpp #605023:605024 @@ -493,7 +493,7 @@ void EngineController::pause() //SLOT { - if ( m_engine->loaded() ) + if ( m_engine->loaded() && !LastFm::Controller::instance()->isPlaying() ) m_engine->pause(); }
Affects now Amarok 2.x.
In Amarok 2 it is now actually possible to pause and resume Last.fm streams without problems :)