mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-18 23:09:33 +02:00
LCL: TListView: fix setting column width. Issue #32920
git-svn-id: trunk@56909 -
This commit is contained in:
parent
12997708a7
commit
44d4157a28
@ -178,7 +178,7 @@ begin
|
||||
else
|
||||
if (MaxWidth > 0) and (W > MaxWidth) then
|
||||
W := MaxWidth;
|
||||
if FWidth = W then Exit;
|
||||
if Width = W then Exit; // compare with Width instead of FWidth - FWidth is not updated from the WS automatically
|
||||
FWidth := W;
|
||||
Changed(False);
|
||||
if not WSUpdateAllowed then Exit;
|
||||
|
Loading…
Reference in New Issue
Block a user