diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2016-05-04 14:08:28 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2016-05-04 14:08:28 +0000 |
commit | 0a43d6b600e48abd24097a4dc8d82f4dc7f0a188 (patch) | |
tree | b9bb5b52abe683fdf114b184fae2429044fb2158 /protocols/Tox | |
parent | 44ff94501cb55830ca63f12ebfa5ba79bc28c296 (diff) |
Tox: fixed custom nodes saving
git-svn-id: http://svn.miranda-ng.org/main/trunk@16800 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Tox')
-rw-r--r-- | protocols/Tox/src/tox_options.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/protocols/Tox/src/tox_options.cpp b/protocols/Tox/src/tox_options.cpp index 8eb0b05026..4bc67d2735 100644 --- a/protocols/Tox/src/tox_options.cpp +++ b/protocols/Tox/src/tox_options.cpp @@ -593,6 +593,7 @@ void CToxOptionsNodeList::OnApply() for (int i = 0; i < itemCount; i++)
{
lvi.iItem = i;
+ lvi.iGroupId = 0;
lvi.mask = LVIF_GROUPID;
m_nodes.GetItem(&lvi);
if (lvi.iGroupId == 0)
|