mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-05 19:00:58 +02:00
LCL: Fix default cursor in TCoolbar.
git-svn-id: trunk@48559 -
This commit is contained in:
parent
4c8baa979a
commit
205e10e855
@ -702,7 +702,7 @@ begin
|
||||
FLockCursor := True;
|
||||
if ABand then begin
|
||||
if not AGrabber then
|
||||
Cursor := crDrag
|
||||
Cursor := crDefault
|
||||
else
|
||||
if not Vertical then
|
||||
Cursor := crHSplit
|
||||
@ -894,6 +894,9 @@ begin
|
||||
FVisiBands[FDraggedBandIndex-1].Width :=
|
||||
Y-FDragInitPos-FVisiBands[FDraggedBandIndex-1].FLeft
|
||||
end;
|
||||
dbMove: begin
|
||||
Cursor := crDrag;
|
||||
end;
|
||||
end;
|
||||
end;
|
||||
end;
|
||||
@ -1008,6 +1011,7 @@ begin
|
||||
Invalidate;
|
||||
end;
|
||||
end;
|
||||
Cursor := crDefault;
|
||||
if Assigned(FOnChange) then
|
||||
FOnChange(Self);
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user