From db6f3932affcc9397c9fbed99d344388a585add5 Mon Sep 17 00:00:00 2001 From: Goraf <22941576+Goraf@users.noreply.github.com> Date: Fri, 3 Nov 2017 22:21:22 +0100 Subject: ZeroNotification: fix eneabling/disabling sound --- plugins/ZeroNotification/src/main.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/plugins/ZeroNotification/src/main.cpp b/plugins/ZeroNotification/src/main.cpp index d4f6283b28..af2e1c1e42 100644 --- a/plugins/ZeroNotification/src/main.cpp +++ b/plugins/ZeroNotification/src/main.cpp @@ -212,10 +212,8 @@ static int OptionsInitialize(WPARAM wParam, LPARAM) static INT_PTR NoSoundMenuCommand(WPARAM, LPARAM) { - if (db_get_b(NULL, "Skin", "UseSound", 1)) - db_set_b(NULL, "Skin", "UseSound", 0); - // else - // db_set_b(NULL,"Skin","UseSound",1); + bool useSound = db_get_b(0, "Skin", "UseSound", true); + db_set_b(0, "Skin", "UseSound", !useSound); return 0; } -- cgit v1.2.3