Hi,
Attached is a minor patch for CodeTools Options dialog. It fixes the
items in the last tab. They got clipped because autosize was not
enabled.
Regards,
- Graeme -
_______________________________________________
fpGUI - a cross-platform Free Pascal GUI toolkit
http://opensoft.homeip.net/fpgui/
Index: ide/codetoolsoptions.pas
===================================================================
--- ide/codetoolsoptions.pas (revision 12977)
+++ ide/codetoolsoptions.pas (working copy)
@@ -974,9 +974,15 @@
procedure TCodeToolsOptsDlg.SetupIdentifierCompletionPage(PageID: integer);
begin
with ICAddSemicolonCheckBox do
+ begin
Caption:=dlgAddSemicolon;
+ AutoSize := True;
+ end;
with ICAddAssignOperatorCheckBox do
+ begin
Caption:=dlgAddAssignmentOperator;
+ AutoSize := True;
+ end;
end;
procedure TCodeToolsOptsDlg.ResizeLineSplittingPage;