diff options
Diffstat (limited to 'plugins/SmileyAdd/src')
-rw-r--r-- | plugins/SmileyAdd/src/options.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/SmileyAdd/src/options.cpp b/plugins/SmileyAdd/src/options.cpp index 6a31209c0f..2781a60508 100644 --- a/plugins/SmileyAdd/src/options.cpp +++ b/plugins/SmileyAdd/src/options.cpp @@ -304,7 +304,7 @@ public: bool OnInitDialog() override
{
- chkStdPack.SetState(opt.UseOneForAll);
+ chkStdPack.SetState(!opt.UseOneForAll);
chkUsePhys.SetState(opt.UsePhysProto);
chkUsePhys.Enable(!opt.UseOneForAll);
@@ -369,7 +369,7 @@ public: ProcessAllInputAreas(true);
CloseSmileys();
- opt.UseOneForAll = chkStdPack.GetState();
+ opt.UseOneForAll = !chkStdPack.GetState();
opt.UsePhysProto = chkUsePhys.GetState();
opt.EnforceSpaces = IsDlgButtonChecked(m_hwnd, IDC_SPACES) == BST_CHECKED;
|