mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 03:18:55 +02:00
lcl: fix TPairSplitter cursor change (#0013925)
git-svn-id: trunk@20513 -
This commit is contained in:
parent
e88c1fadd4
commit
d37ca80343
@ -269,6 +269,7 @@ begin
|
||||
|
||||
if Cursor = DefaultCursors[FSplitterType] then
|
||||
Cursor := DefaultCursors[AValue];
|
||||
|
||||
FSplitterType := AValue;
|
||||
|
||||
// TODO: Remove RecreateWnd
|
||||
@ -336,11 +337,9 @@ end;
|
||||
|
||||
procedure TCustomPairSplitter.SetCursor(Value: TCursor);
|
||||
begin
|
||||
FLoadCursor := Value;
|
||||
if not HandleAllocated then
|
||||
begin
|
||||
FLoadCursor := Value;
|
||||
Exit;
|
||||
end;
|
||||
// if widgetset class dont want to set cursor (has no internal splitter) then
|
||||
// use default lcl handler
|
||||
if not TWSCustomPairSplitterClass(WidgetSetClass).SetSplitterCursor(Self, Value) then
|
||||
|
Loading…
Reference in New Issue
Block a user