mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 02:18:03 +02:00
LCL/ListView: Fix OnSelectItem not showing previously selected item when argument Selected=false (on Windows).
This commit is contained in:
parent
829bad776f
commit
9aa8b52ba2
@ -260,6 +260,7 @@ var
|
||||
nm: PNMListView;
|
||||
Item: TListItem;
|
||||
n: Integer;
|
||||
oldSelected: TListItem;
|
||||
begin
|
||||
nm := PNMListView(AMessage.NMHdr);
|
||||
// ignore any notifications while initializing items
|
||||
@ -347,6 +348,7 @@ begin
|
||||
if (((nm^.uOldState and LVIS_SELECTED) <> (nm^.uNewState and LVIS_SELECTED)))
|
||||
or (not (lffSelectedValid in FFlags) and (nm^.uNewState and LVIS_SELECTED <> 0)) then
|
||||
begin
|
||||
oldSelected := FSelected;
|
||||
if MultiSelect and OwnerData then
|
||||
UpdateMultiSelList(Item, nm^.uNewState and LVIS_SELECTED <> 0);
|
||||
|
||||
@ -358,9 +360,12 @@ begin
|
||||
if FSelected = Item then
|
||||
InvalidateSelected
|
||||
end else
|
||||
begin
|
||||
if (nm^.iItem < 0) or (nm^.iItem = FSelectedIdx) then
|
||||
if not MultiSelect then
|
||||
InvalidateSelected;
|
||||
Item := oldSelected;
|
||||
end;
|
||||
end else
|
||||
begin
|
||||
FSelected := Item;
|
||||
|
Loading…
Reference in New Issue
Block a user