Commit ae720e6d authored by Jon Griffiths's avatar Jon Griffiths Committed by Alexandre Julliard

Increase the required rectangle size before drawing big +/-.

parent b28c79aa
......@@ -2345,7 +2345,7 @@ TREEVIEW_DrawItemLines(TREEVIEW_INFO *infoPtr, HDC hdc, TREEVIEW_ITEM *item)
SelectObject(hdc, hOldPen);
DeleteObject(hNewPen);
if (height < 16 || width < 16)
if (height < 18 || width < 18)
{
MoveToEx(hdc, centerx - plussize + 1, centery, NULL);
LineTo(hdc, centerx + plussize, centery);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment