Commit 0d173d01 authored by Ulrich Czekalla's avatar Ulrich Czekalla Committed by Alexandre Julliard

The rectangle passed in DRAWITEMSTRUCT is slightly too large as

compared with Windows.
parent c612a89b
......@@ -1637,6 +1637,14 @@ TAB_DrawItemInterior
DRAWITEMSTRUCT dis;
UINT id;
drawRect->top += 2;
drawRect->right -= 1;
if ( iItem == infoPtr->iSelected )
{
drawRect->right -= 1;
drawRect->left += 1;
}
/*
* get the control id
*/
......
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