IDE, SourceEditor: Restore saving (to session) the current active tab of *all* open SourceWindows. (Undone from 907d1a29da)

(cherry picked from commit 145bfa9c0c)
This commit is contained in:
Martin 2024-01-23 12:33:11 +01:00
parent 9cc28d03c4
commit 5bd8abd32b

View File

@ -3933,7 +3933,8 @@ var
begin
for i := 0 to AllEditorsInfoCount - 1 do
with AllEditorsInfo[i] do
IsVisibleTab := (WindowID = AWindowID) and (EditorComponent = AnEditor);
if AllEditorsInfo[i].WindowID = AWindowID then
IsVisibleTab := (EditorComponent = AnEditor);
AnEditorInfo := EditorInfoWithEditorComponent(AnEditor);
if AnEditorInfo = nil then Exit(nil);
Result := AnEditorInfo.UnitInfo;