mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-05 23:00:47 +02:00
IdeIntf: Copy ForceUpdate in TPersistentSelectionList.Assign also when Count=0.
git-svn-id: trunk@52228 -
This commit is contained in:
parent
672ab540ee
commit
2df36f2a8d
@ -224,7 +224,7 @@ var
|
||||
begin
|
||||
if SourceSelectionList = Self then Exit;
|
||||
Clear;
|
||||
if (SourceSelectionList <> nil) and (SourceSelectionList.Count > 0) then
|
||||
if Assigned(SourceSelectionList) then
|
||||
begin
|
||||
FForceUpdate := SourceSelectionList.ForceUpdate;
|
||||
FPersistentList.Count := SourceSelectionList.Count;
|
||||
|
Loading…
Reference in New Issue
Block a user