Summary: | Pause does still work when playing last.fm streams | ||
---|---|---|---|
Product: | [Applications] amarok | Reporter: | Elias Probst <mail> |
Component: | general | Assignee: | Amarok Developers <amarok-bugs-dist> |
Status: | RESOLVED FIXED | ||
Severity: | normal | CC: | me |
Priority: | NOR | ||
Version: | 2.0-SVN | ||
Target Milestone: | --- | ||
Platform: | Gentoo Packages | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Elias Probst
2006-08-26 09:52:02 UTC
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 :) |