diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2013-01-02 12:09:52 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2013-01-02 12:09:52 +0000 |
commit | 486e44e8b437030a48f8b661948388fdbc984f88 (patch) | |
tree | 0629584551170f0cd06a425e415115fdef43f394 /plugins/StartPosition/src | |
parent | d643153f0ed44f1852a31e01591a70706be317f8 (diff) |
fixed consistancy of default settings (r2909)
git-svn-id: http://svn.miranda-ng.org/main/trunk@2913 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/StartPosition/src')
-rw-r--r-- | plugins/StartPosition/src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/StartPosition/src/main.cpp b/plugins/StartPosition/src/main.cpp index 782a2f1ac5..7ead14ad62 100644 --- a/plugins/StartPosition/src/main.cpp +++ b/plugins/StartPosition/src/main.cpp @@ -216,7 +216,7 @@ extern "C" __declspec(dllexport) int Load(void) SystemParametersInfo(SPI_GETWORKAREA, 0, &WorkArea, 0);
BYTE clEnableTop = db_get_b(NULL, MODULE_NAME, "CLEnableTop", 1);
- BYTE clEnableBottom = db_get_b(NULL, MODULE_NAME, "CLEnableBottom", 1);
+ BYTE clEnableBottom = db_get_b(NULL, MODULE_NAME, "CLEnableBottom", 0);
BYTE clEnableSide = db_get_b(NULL, MODULE_NAME, "CLEnableSide", 1);
BYTE clEnableWidth = db_get_b(NULL, MODULE_NAME, "CLEnableWidth", 0);
|