diff options
author | George Hazan <george.hazan@gmail.com> | 2014-01-19 16:12:45 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-01-19 16:12:45 +0000 |
commit | 146f32de4c288f1900b5a8f168290dc2bbd40530 (patch) | |
tree | 9733f02444e18268d2dbfa11102a4b04bf28bacf /src | |
parent | 03faabc4ee5eb6a9bfa5882f155cf3225128ca42 (diff) |
fix for the log icons' background
git-svn-id: http://svn.miranda-ng.org/main/trunk@7762 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src')
-rw-r--r-- | src/modules/chat/log.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/chat/log.cpp b/src/modules/chat/log.cpp index 115b9fc907..26a88b35f3 100644 --- a/src/modules/chat/log.cpp +++ b/src/modules/chat/log.cpp @@ -477,7 +477,7 @@ char* Log_CreateRtfHeader(MODULEINFO *mi) void LoadMsgLogBitmaps(void)
{
- HBRUSH hBkgBrush = CreateSolidBrush(db_get_dw(NULL, "Chat", "ColorLogBG", GetSysColor(COLOR_WINDOW)));
+ HBRUSH hBkgBrush = CreateSolidBrush(g_Settings->crLogBackground);
BITMAPINFOHEADER bih = { 0 };
bih.biSize = sizeof(bih);
|