Changeset 460 for trunk


Ignore:
Timestamp:
Feb 18, 2023, 6:26:37 PM (2 years ago)
Author:
ataylor
Message:

AE now uses WindowText font and scales controls as needed.

Location:
trunk/ae
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/ae/ColorsFormUnit.pas

    r454 r460  
    4747Procedure TColorsForm.ColorsFormOnSetupShow (Sender: TObject);
    4848Begin
    49 //   ScaleForm( self, 11, 16 );
     49  ScaleForm( self, 8, 16 );
    5050  // doesn't look to good with non-proportional scaling.
    5151End;
  • trunk/ae/MainFormUnit.pas

    r454 r460  
    99
    1010Const
    11   AppVersion =     'v1.9.8a'; // $SS_REQUIRE_NEW_VERSION$
    12   BldLevelVersion = '1.9.8a';
     11  AppVersion =     'v1.9.7c'; // $SS_REQUIRE_NEW_VERSION$
     12  BldLevelVersion = '1.9.7c';
    1313
    1414{ Todo:
     
    17201720  FirstPanelWidth: longint;
    17211721Begin
    1722   StatusBar.Height := Canvas.TextHeight( 'S' ) + 4;
     1722  StatusBar.Height := Canvas.TextHeight( 'S' ) + Font.InternalLeading + 4;
    17231723  if Assigned( Memo ) then
    17241724  begin
  • trunk/ae/ProductInformationFormUnit.pas

    r454 r460  
    4848Procedure TProductInformationForm.ProductInformationFormOnSetupShow (Sender: TObject);
    4949Begin
    50   ScaleForm( self, 11, 16 );
     50  ScaleForm( self, 8, 16 );
    5151End;
    5252
     
    5454Begin
    5555  RegisterForLanguages( OnLanguageEvent );
     56  Font := GetNiceDefaultFont;
    5657
    5758  NameAndVersionEdit.Font := Screen.CreateCompatibleFont( Font );
Note: See TracChangeset for help on using the changeset viewer.