diff options
author | George Hazan <george.hazan@gmail.com> | 2014-01-15 16:14:00 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-01-15 16:14:00 +0000 |
commit | c4e3c65e2e850f978516823397b802557ad7ef1a (patch) | |
tree | 3595748f3c7d78fcc2c6aafe6319209cd118f563 /src/modules/chat/chat_opts.cpp | |
parent | 156c91b93ca6674da6f7021b8579b62d79403f20 (diff) |
- basic chat types to support plugin specific data;
- default value changed for SplitterY
git-svn-id: http://svn.miranda-ng.org/main/trunk@7667 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/modules/chat/chat_opts.cpp')
-rw-r--r-- | src/modules/chat/chat_opts.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/chat/chat_opts.cpp b/src/modules/chat/chat_opts.cpp index 0d5d422310..341d56db21 100644 --- a/src/modules/chat/chat_opts.cpp +++ b/src/modules/chat/chat_opts.cpp @@ -328,9 +328,9 @@ int OptionsInit(void) ci.pSettings->iSplitterX = db_get_w(NULL, "Chat", "SplitterX", 105);
if (ci.pSettings->iSplitterX <= 50)
ci.pSettings->iSplitterX = 105;
- ci.pSettings->iSplitterY = db_get_w(NULL, "Chat", "SplitterY", 50);
- if (ci.pSettings->iSplitterY <= 20)
- ci.pSettings->iSplitterY = 50;
+ ci.pSettings->iSplitterY = db_get_w(NULL, "Chat", "SplitterY", 90);
+ if (ci.pSettings->iSplitterY <= 65)
+ ci.pSettings->iSplitterY = 90;
LoadGlobalSettings();
|