Changeset 458 for trunk/ConfigApps/MainFormUnit.pas
- Timestamp:
- Feb 17, 2023, 2:14:04 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ConfigApps/MainFormUnit.pas
r416 r458 7 7 8 8 const 9 AppVersion = 'V1.2. 0'; // $SS_REQUIRE_NEW_VERSION$9 AppVersion = 'V1.2.1'; // $SS_REQUIRE_NEW_VERSION$ 10 10 11 11 type … … 49 49 LngDirectoryDoesNotExist: String; 50 50 LngSaveAnyway: String; 51 Procedure MainFormOnSetupShow (Sender: TObject); 51 52 Procedure ParametersEditOnChange (Sender: TObject); 52 53 Procedure RestoreButtonOnClick (Sender: TObject); … … 183 184 '' ); 184 185 end; 186 187 Procedure TMainForm.MainFormOnSetupShow (Sender: TObject); 188 Begin 189 ScaleForm( self, 7, 14 ); 190 ItemsListBox.SetColumnWidth( 0, trunc( Width * 0.3 )); 191 End; 185 192 186 193 Procedure TMainForm.ParametersEditOnChange (Sender: TObject); … … 354 361 Bottom := ( Screen.Height - Height ) div 2; 355 362 363 ItemsListBox.ItemHeight := Font.Height + 2; 364 ItemsListBox.HeaderHeight := Font.Height + 2; 365 356 366 end; 357 367
Note:
See TracChangeset
for help on using the changeset viewer.