Skip to content

Commit

Permalink
Fix #1214
Browse files Browse the repository at this point in the history
  • Loading branch information
pyscripter committed Jun 19, 2023
1 parent bf8ccac commit 9bb0832
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Source/frmPyIDEMain.pas
Expand Up @@ -560,11 +560,11 @@
Issues addressed
#1152, #1155, #1177, #1181, #1182, #1183, #1185, #1186, #1187, #1189
History: v 4.2.6
History: v 4.2.7
New Features
- Customizable user interface content font size (#1209)
Issues addressed
#1172, #1195, #1197, #1198, #1208
#1172, #1195, #1197, #1198, #1208, #1214
}

Expand Down Expand Up @@ -4005,7 +4005,7 @@ procedure TPyIDEMainForm.LayoutClick(Sender: TObject);

function TPyIDEMainForm.LayoutExists(const Layout: string): Boolean;
begin
Result := Layouts.IndexOf(Name) >= 0;
Result := Layouts.IndexOf(Layout) >= 0;
end;

procedure TPyIDEMainForm.lbPythonEngineClick(Sender: TObject);
Expand Down

0 comments on commit 9bb0832

Please sign in to comment.