Changeset 472
- Timestamp:
- Mar 2, 2023, 1:58:25 AM (2 years ago)
- Location:
- trunk/NewView
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/NewView/FileDialogForm.pas
r465 r472 150 150 Procedure TFileDialogForm.FileDialogFormOnSetupShow (Sender: TObject); 151 151 Begin 152 ScaleForm( self, 10, 16 );152 ScaleForm( self, 8, 16 ); 153 153 154 154 // ScaleForm seems to misposition the combo-boxes, so we fix that here -
trunk/NewView/GlobalSearchForm.pas
r465 r472 301 301 Procedure TGlobalSearchForm.GlobalSearchFormOnSetupShow (Sender: TObject); 302 302 Begin 303 ScaleForm( self, 8, 16 ); 303 ScaleForm( self, 9, 16 ); 304 304 305 // Fix scaling issues on some controls 305 if SearchTextLabel1.Top > (SearchLocationComboBox.Top + 2) then306 SearchTextLabel1.Top := SearchLocationComboBox.Top + 2;306 SearchLocationComboBox.Top := SelectDrivesButton.Top + 3; 307 SearchTextLabel1.Top := SelectDrivesButton.Top + 5; 307 308 Bevel.Bottom := ClientHeight - ResultsLabel.Top + 4; 308 Led.Height := ResultsLabel.Height;309 Led.Height := 15; 309 310 Led.Width := Led.Height; 310 Led.Top := ResultsLabel.Top; 311 Led.Bottom := ResultsLabel.Bottom + 1; 312 Led.Right := ResultsOutline.Right - 1; 313 314 SearchTextLabel1.XAlign := xaLeft; 315 SearchTextLabel1.YAlign := yaTop; 316 317 Bevel.XStretch := xsFrame; 318 Bevel.YAlign := yaTop; 319 320 LED.XAlign := xaRight; 321 LED.YAlign := yaTop; 311 322 312 323 SearchButton.Align := alFixedRightTop; … … 726 737 SearchButton.YAlign := yaTop; 727 738 728 SearchTextLabel1.XAlign := xaLeft;729 SearchTextLabel1.YAlign := yaTop;730 731 739 SearchLocationComboBox.XStretch := xsFrame; 732 740 SearchLocationComboBox.YAlign := yaTop; … … 734 742 SelectDrivesButton.XAlign := xaRight; 735 743 SelectDrivesButton.YAlign := yaTop; 736 737 Bevel.XStretch := xsFrame;738 Bevel.YAlign := yaTop;739 740 LED.XAlign := xaRight;741 LED.YAlign := yaTop;742 744 743 745 ResultsLabel.XAlign := xaLeft; -
trunk/NewView/OptionsForm.pas
r94 r472 146 146 Procedure TOptionsForm.OptionsFormOnSetupShow (Sender: TObject); 147 147 Begin 148 ScaleForm( self, 11, 16 );148 ScaleForm( self, 9, 16 ); 149 149 End; 150 150 -
trunk/NewView/ProductInformationFormUnit.pas
r306 r472 63 63 Procedure TProductInformationForm.ProductInformationFormOnSetupShow (Sender: TObject); 64 64 Begin 65 ScaleForm( self, 1 1, 16 );65 ScaleForm( self, 10, 16 ); 66 66 End; 67 67 -
trunk/NewView/VersionUnit.pas
r465 r472 17 17 18 18 const 19 Version = 'V2.19.7 a'; // $SS_REQUIRE_NEW_VERSION$19 Version = 'V2.19.7b'; // $SS_REQUIRE_NEW_VERSION$ 20 20 BldLevelVersion = '2.19.7'; // Embedded for IBM BLDLEVEL tool 21 21 CopyrightMsg = 'Copyright 2005 Aaron Lawrence; 2006-2019 Ronald Brill';
Note:
See TracChangeset
for help on using the changeset viewer.