[Xfce4-commits] [apps/parole] 01/01: Fix logic and debug building

noreply at xfce.org noreply at xfce.org
Sun Sep 6 18:21:15 CEST 2015


This is an automated email from the git hooks/post-receive script.

bluesabre pushed a commit to branch master
in repository apps/parole.

commit c399b8aae682b65521acbc21dd81c819449792f1
Author: Sean Davis <smd.seandavis at gmail.com>
Date:   Sun Sep 6 12:21:09 2015 -0400

    Fix logic and debug building
---
 src/parole-player.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/parole-player.c b/src/parole-player.c
index ce14358..db1750b 100644
--- a/src/parole-player.c
+++ b/src/parole-player.c
@@ -4062,7 +4062,7 @@ static gboolean parole_player_dbus_lower_volume (ParolePlayer *player,
 static gboolean parole_player_dbus_mute (ParolePlayer *player,
                                          GError *error)
 {
-    if (!gtk_scale_button_get_value (GTK_SCALE_BUTTON (player->priv->volume)) == 0.0)
+    if (gtk_scale_button_get_value (GTK_SCALE_BUTTON (player->priv->volume)) != 0.0)
     {
         parole_player_volume_mute(NULL, player);
     }

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Xfce4-commits mailing list