LCL: simplify TScreen.BeginTempCursor

git-svn-id: trunk@62683 -
This commit is contained in:
ondrej 2020-02-28 07:07:40 +00:00
parent 5930969e12
commit da5d437410

View File

@ -302,8 +302,8 @@ begin
OldCursor := RealCursor;
SetLength(FTempCursors, Length(FTempCursors)+1);
FTempCursors[High(FTempCursors)] := aCursor;
if OldCursor<>RealCursor then
WidgetSet.SetCursor(Cursors[RealCursor]);
if OldCursor<>aCursor then
WidgetSet.SetCursor(Cursors[aCursor]);
end;
procedure TScreen.BeginWaitCursor;