summaryrefslogtreecommitdiff
path: root/src/core/stdclist
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2012-11-07 12:28:15 +0000
committerGeorge Hazan <george.hazan@gmail.com>2012-11-07 12:28:15 +0000
commit4a0fce7d613a7b0561603b159323c0bde4e129fd (patch)
tree24ea7f6324290d64ed143cee8932b7857d28a430 /src/core/stdclist
parent5a6462093902ee3f29d1f3e2a05a5068cbee66f8 (diff)
fix for the group line length calculation
git-svn-id: http://svn.miranda-ng.org/main/trunk@2229 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/core/stdclist')
-rw-r--r--src/core/stdclist/src/clcpaint.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/stdclist/src/clcpaint.cpp b/src/core/stdclist/src/clcpaint.cpp
index 4a46ce1903..705a40b2a0 100644
--- a/src/core/stdclist/src/clcpaint.cpp
+++ b/src/core/stdclist/src/clcpaint.cpp
@@ -458,7 +458,7 @@ void PaintClc(HWND hwnd, struct ClcData *dat, HDC hdc, RECT * rcPaint)
rc.top = y + (dat->rowHeight >> 1);
rc.bottom = rc.top + 2;
rc.left = dat->leftMargin + indent * dat->groupIndent + checkboxWidth + dat->iconXSpace + width + 3;
- rc.right = clRect.right - 1 - dat->extraColumnSpacing * dat->extraColumnsCount;
+ rc.right = clRect.right - 1;
if (rc.right - rc.left > 1)
DrawEdge(hdcMem, &rc, BDR_SUNKENOUTER, BF_RECT);
}