You've already forked lazarus-ccr
* 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:
@ -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
|
||||
|
Reference in New Issue
Block a user