diff options
-rw-r--r-- | plugins/NewXstatusNotify/res/resource.rc | 2 | ||||
-rw-r--r-- | plugins/NewXstatusNotify/src/options.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/NewXstatusNotify/res/resource.rc b/plugins/NewXstatusNotify/res/resource.rc index 198de5063d..11308ecd2e 100644 --- a/plugins/NewXstatusNotify/res/resource.rc +++ b/plugins/NewXstatusNotify/res/resource.rc @@ -117,7 +117,7 @@ BEGIN CONTROL "Automatically turn off Popups and Sounds on status change",IDC_AUTODISABLE,
"Button",BS_AUTOCHECKBOX | WS_TABSTOP,10,96,219,10
PUSHBUTTON "Configure",IDC_CONFIGUREAUTODISABLE,239,94,50,14
- CONTROL "Don't notify me for people not in my Contact List",IDC_HIDDENCONTACTSTOO,
+ CONTROL "Notify me for people not in my Contact List",IDC_HIDDENCONTACTSTOO,
"Button",BS_AUTOCHECKBOX | WS_TABSTOP,10,109,279,10
CONTROL "Blink icon in the system tray",IDC_BLINKICON,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,10,135,279,10
CONTROL "Use status icon",IDC_BLINKICON_STATUS,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,10,148,279,10
diff --git a/plugins/NewXstatusNotify/src/options.cpp b/plugins/NewXstatusNotify/src/options.cpp index 808092d498..8c02d2eeb8 100644 --- a/plugins/NewXstatusNotify/src/options.cpp +++ b/plugins/NewXstatusNotify/src/options.cpp @@ -73,7 +73,7 @@ void LoadOptions() // IDD_OPT_GENERAL
opt.FromOffline = DBGetContactSettingByte(0, MODULE, "FromOffline", 1);
opt.AutoDisable = DBGetContactSettingByte(0, MODULE, "AutoDisable", 1);
- opt.HiddenContactsToo = DBGetContactSettingByte(0, MODULE, "HiddenContactsToo", 1);
+ opt.HiddenContactsToo = DBGetContactSettingByte(0, MODULE, "HiddenContactsToo", 0);
opt.UseIndSnd = DBGetContactSettingByte(0, MODULE, "UseIndSounds", 1);
opt.BlinkIcon = DBGetContactSettingByte(0, MODULE, "BlinkIcon", 0);
opt.BlinkIcon_Status = DBGetContactSettingByte(0, MODULE, "BlinkIcon_Status", 0);
|