mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-06 12:00:40 +02:00
LCL: fix dbgrid not updating the editor while the record is modified, issue #0033281
git-svn-id: trunk@57428 -
This commit is contained in:
parent
3070f417a7
commit
632758d660
@ -767,9 +767,12 @@ begin
|
||||
UpdateActive
|
||||
else begin
|
||||
c := GetGridColumnFromField(Field);
|
||||
if c>0 then
|
||||
InvalidateCell(C, Row)
|
||||
else
|
||||
if c>0 then begin
|
||||
if EditorMode then
|
||||
RestoreEditor
|
||||
else
|
||||
InvalidateCell(C, Row)
|
||||
end else
|
||||
UpdateActive;
|
||||
end;
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user