diff options
author | Robert Pösel <robyer@seznam.cz> | 2016-09-05 21:11:03 +0000 |
---|---|---|
committer | Robert Pösel <robyer@seznam.cz> | 2016-09-05 21:11:03 +0000 |
commit | 0762407a37064faa2d212f785a5d81f30f7256bc (patch) | |
tree | ce0669686c71f15dee221145f76716687a37fd13 /plugins/TabSRMM/src/globals.cpp | |
parent | 0199472ae865d062ac3cfd14be6eb069eff28f30 (diff) |
TabSRMM: Make default settings more user friendly and use nicer templates
This also fixes problem where TabSRMM wasn't correctly initialized until first applying of options, and resulted in "broken" text in message log (missing some items so it looked very ugly).
git-svn-id: http://svn.miranda-ng.org/main/trunk@17261 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/TabSRMM/src/globals.cpp')
-rw-r--r-- | plugins/TabSRMM/src/globals.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/TabSRMM/src/globals.cpp b/plugins/TabSRMM/src/globals.cpp index 8efb343740..51fb9ecea7 100644 --- a/plugins/TabSRMM/src/globals.cpp +++ b/plugins/TabSRMM/src/globals.cpp @@ -219,7 +219,7 @@ void CGlobals::reloadAdv() SkinAddNewSoundEx("SoundOnTyping", LPGEN("Other"), LPGEN("TabSRMM: typing"));
m_TypingSoundAdded = true;
}
- m_bAllowOfflineMultisend = M.GetBool("AllowOfflineMultisend", false);
+ m_bAllowOfflineMultisend = M.GetBool("AllowOfflineMultisend", true);
}
const HMENU CGlobals::getMenuBar()
|