mirror of
https://github.com/RGBCube/serenity
synced 2025-07-24 16:37:35 +00:00
Audio.MenuApplet: Remove debug spam about muting
This commit is contained in:
parent
72bdf595cc
commit
5ddb747038
1 changed files with 0 additions and 2 deletions
|
@ -12,7 +12,6 @@ public:
|
||||||
{
|
{
|
||||||
m_audio_client = make<AClientConnection>();
|
m_audio_client = make<AClientConnection>();
|
||||||
m_audio_client->on_muted_state_change = [this](bool muted) {
|
m_audio_client->on_muted_state_change = [this](bool muted) {
|
||||||
dbg() << "Muted state changed: " << muted;
|
|
||||||
if (m_audio_muted == muted)
|
if (m_audio_muted == muted)
|
||||||
return;
|
return;
|
||||||
m_audio_muted = muted;
|
m_audio_muted = muted;
|
||||||
|
@ -29,7 +28,6 @@ private:
|
||||||
{
|
{
|
||||||
if (event.button() != GMouseButton::Left)
|
if (event.button() != GMouseButton::Left)
|
||||||
return;
|
return;
|
||||||
dbg() << "set_muted: " << !m_audio_muted;
|
|
||||||
m_audio_client->set_muted(!m_audio_muted);
|
m_audio_client->set_muted(!m_audio_muted);
|
||||||
update();
|
update();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue