mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-28 10:09:45 +02:00
LCL: editbtn: fix regression after r54191 #0da26ddcc1 (filter wasn't applied).
git-svn-id: trunk@54204 -
This commit is contained in:
parent
d6ec634142
commit
aa9e36d48e
@ -1155,10 +1155,10 @@ end;
|
||||
|
||||
procedure TCustomControlFilterEdit.SetFilter(const AValue: string);
|
||||
begin
|
||||
if Text=AValue then
|
||||
Button.Enabled:=AValue<>'';
|
||||
if fFilter=AValue then
|
||||
Exit;
|
||||
|
||||
Text:=AValue;
|
||||
fFilter:=AValue;
|
||||
ApplyFilter;
|
||||
end;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user