mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 07:58:07 +02:00
Merged revision(s) 63596 #727eb0ef72, 63627 #4fde982e86 from trunk:
LCL: Prevent DBGrid raising exception after enabled and hiding inplace editor. Issue #37385, patch from Zdravko Gabrovski. ........ Codetools: Find form's ancestor also when a generic form is specialized. Issue #37396, patch from Imants Gulbis. ........ git-svn-id: branches/fixes_2_0@64608 -
This commit is contained in:
parent
ee6fa154ed
commit
c00cb12cca
@ -3113,6 +3113,8 @@ begin
|
||||
ReadNextAtom;
|
||||
if AtomIsChar('(') then begin
|
||||
ReadNextAtom;
|
||||
if UpAtomIs('SPECIALIZE') then
|
||||
ReadNextAtom;
|
||||
if AtomIsIdentifier then
|
||||
AncestorClassName:=GetAtom;
|
||||
end;
|
||||
|
@ -7079,6 +7079,7 @@ begin
|
||||
{$ifdef dbgGrid}DebugLnEnter('grid.DoEditorHide [',Editor.ClassName,'] INIT');{$endif}
|
||||
if gfEditingDone in FGridFlags then begin
|
||||
ParentForm := GetParentForm(Self);
|
||||
if Self.CanFocus then
|
||||
ParentForm.ActiveControl := self;
|
||||
end;
|
||||
Editor.Visible:=False;
|
||||
|
Loading…
Reference in New Issue
Block a user