mirror of https://github.com/procxx/kepka.git
Use QuietHours registry key only in latest Windows
Sometimes the windows quiet hours registry key gets set even in Windows 7 (or older) and we disable notifications though it has nothing to do with real user settings. Check for 8.1 at least.
This commit is contained in:
parent
746d58e453
commit
4232fa2f6e
|
@ -546,6 +546,11 @@ bool QuietHoursEnabled = false;
|
||||||
DWORD QuietHoursValue = 0;
|
DWORD QuietHoursValue = 0;
|
||||||
|
|
||||||
void queryQuietHours() {
|
void queryQuietHours() {
|
||||||
|
if (QSysInfo::windowsVersion() < QSysInfo::WV_WINDOWS8_1) {
|
||||||
|
// No system quiet hours in Windows prior to Windows 8.1
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
LPTSTR lpKeyName = L"Software\\Microsoft\\Windows\\CurrentVersion\\Notifications\\Settings";
|
LPTSTR lpKeyName = L"Software\\Microsoft\\Windows\\CurrentVersion\\Notifications\\Settings";
|
||||||
LPTSTR lpValueName = L"NOC_GLOBAL_SETTING_TOASTS_ENABLED";
|
LPTSTR lpValueName = L"NOC_GLOBAL_SETTING_TOASTS_ENABLED";
|
||||||
HKEY key;
|
HKEY key;
|
||||||
|
@ -558,7 +563,7 @@ void queryQuietHours() {
|
||||||
result = RegQueryValueEx(key, lpValueName, 0, &type, (LPBYTE)&value, &size);
|
result = RegQueryValueEx(key, lpValueName, 0, &type, (LPBYTE)&value, &size);
|
||||||
RegCloseKey(key);
|
RegCloseKey(key);
|
||||||
|
|
||||||
auto quietHoursEnabled = (result == ERROR_SUCCESS);
|
auto quietHoursEnabled = (result == ERROR_SUCCESS) && (value == 0);
|
||||||
if (QuietHoursEnabled != quietHoursEnabled) {
|
if (QuietHoursEnabled != quietHoursEnabled) {
|
||||||
QuietHoursEnabled = quietHoursEnabled;
|
QuietHoursEnabled = quietHoursEnabled;
|
||||||
QuietHoursValue = value;
|
QuietHoursValue = value;
|
||||||
|
|
Loading…
Reference in New Issue