Summary: | Amarok mute button resume non-functional | ||
---|---|---|---|
Product: | [Applications] amarok | Reporter: | Texstar <texstar> |
Component: | general | Assignee: | Amarok Developers <amarok-bugs-dist> |
Status: | RESOLVED FIXED | ||
Severity: | normal | CC: | alassane.maiga, alexander.julo, harlequix |
Priority: | NOR | Keywords: | regression |
Version: | 2.4-GIT | ||
Target Milestone: | 2.4.0 | ||
Platform: | Unlisted Binaries | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | 2.4.1 | |
Sentry Crash Report: |
Description
Texstar
2010-10-03 09:41:59 UTC
I can confirm that with 2.4-GIT build today on kde 4.5.3. Changing the volume revokes the unmute by the way. I can't reproduce this here, using the phonon-vlc-backend. Which phonon backend do you both use? gstreamer backend I can reproduce it on amarok 2.4 from git. after clicking on unmuting you have to move the slider before you can hear the sound again. No problems for the sound in the rest of the system Alassane: which Phonon backend do you use? I use Xine backend Thank you for your feedback. Maybe somebody else than me from the Amarok people can reproduce this. Had the same problem, but now it is fixed using: amarok git 20101217 gstreamer phonon-backend 0.1 vlc backend 0.3.1 and xine 0.2.60 Thank you for the feedback. Bug persists, so not fixed. KDE 4.6 RC2 (4.5.95) 64bit Amarok 2.4.0 Linux (x86_64) release 2.6.37-CHAKRA xine 0.2.60 Steps to reproduce exactly the same. Thank you for the feedback, reopening. commit 6e1339533a1645e0d2a3cff0b5deb7bead20efae branch master Author: Sergey Ivanov <123kash@gmail.com> Date: Mon Jan 17 11:24:34 2011 +0300 Fixed Mute button. BUG: 253098 diff --git a/ChangeLog b/ChangeLog index 880aa2d..c886eb6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -13,6 +13,7 @@ VERSION 2.4.1 <bhargav.1191@gmail.com>. (BR 248690) BUGFIXES: + * Fixed Mute button. (BR 253098) * Fixed issue with Organize collection, which made amarok remove newly copied tracks. (BR 263301) * Fixed wrong "Configure amarok" action position in tray icon popup menu. (BR 263330) diff --git a/src/EngineController.cpp b/src/EngineController.cpp index 8a7f480..fcbf1da 100644 --- a/src/EngineController.cpp +++ b/src/EngineController.cpp @@ -724,6 +724,8 @@ void EngineController::setMuted( bool mute ) //SLOT { m_audio.data()->setMuted( mute ); // toggle mute + if( !isMuted() ) + setVolume( m_volume ); AmarokConfig::setMuteState( mute ); emit muteStateChanged( mute ); |