DockedFormEditor: fix "cannot focus an inactive window" if showing source-edit hidden in tabbed anchor-docking.

(double click button, while source-edit is cloned to 2nd source-edit, docked into same main window but hidden in nested anchor tabs)
This commit is contained in:
Martin 2024-09-23 10:55:21 +02:00
parent 708f754935
commit 20929d2f06

View File

@ -239,6 +239,7 @@ var
begin
{$IFDEF DEBUGDOCKEDFORMEDITOR} DebugLn('TDockedTabMaster.ShowCode'); {$ENDIF}
if ASourceEditor = nil then Exit;
SourceEditorManagerIntf.ActiveEditor := ASourceEditor;
LPageCtrl := SourceWindows.FindPageControl(ASourceEditor);
LPageCtrl.ShowCode;
ASourceEditor.EditorControl.SetFocus;
@ -250,6 +251,7 @@ var
begin
{$IFDEF DEBUGDOCKEDFORMEDITOR} DebugLn('TDockedTabMaster.ShowDesigner'); {$ENDIF}
if ASourceEditor = nil then Exit;
SourceEditorManagerIntf.ActiveEditor := ASourceEditor;
LPageCtrl := SourceWindows.FindPageControl(ASourceEditor);
LPageCtrl.ShowDesigner(AIndex);
end;