* Do not auto scroll if mouse pos in header. Issue 21944

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@2421 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
blikblum
2012-05-07 16:37:42 +00:00
parent 04ac8f2295
commit 315e2d4437

View File

@ -17882,7 +17882,7 @@ begin
if hoVisible in FHeader.FOptions then
Dec(Y, FHeader.Height);
if (Y < Integer(FDefaultNodeHeight)) and (FOffsetY <> 0) then
if (Y > 0) and (Y < Integer(FDefaultNodeHeight)) and (FOffsetY <> 0) then
Include(Result, sdUp);
//todo: probably the code below is bug due to poor timeGetTime implementation