- Timestamp:
- Feb 26, 2023, 1:26:47 AM (2 years ago)
- Location:
- trunk/ae
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ae/AEPrintDialogUnit.pas
r454 r469 53 53 Procedure TAEPrintDialog.AEPrintDialogOnSetupShow (Sender: TObject); 54 54 Begin 55 ScaleForm( self, 11, 16 );55 ScaleForm( self, 9, 16 ); 56 56 End; 57 57 -
trunk/ae/MainFormUnit.pas
r467 r469 9 9 10 10 Const 11 AppVersion = 'v1.9.8c'; // $SS_REQUIRE_NEW_VERSION$12 BldLevelVersion = '1.9. 9';11 AppVersion = 'v1.9.8d'; // $SS_REQUIRE_NEW_VERSION$ 12 BldLevelVersion = '1.9.8d'; 13 13 14 14 { Todo: … … 666 666 ExtractFileName( FFilename ) ); 667 667 668 // centred date/time, if it fits 669 DateTimeStr := FormatDateTime( ' ddddd t', // short date, short time668 // centred date/time, if it fits (short/long date/time strings cause crash on some systems) 669 DateTimeStr := FormatDateTime( 'yyyy/mm/dd h:nn:ss ampm', 670 670 Now ); 671 671 … … 687 687 Y, 688 688 PageNumberStr ); 689 689 690 end; 690 691 … … 771 772 begin 772 773 Printer.Canvas.Font := 773 Screen.GetFontFromPointSize( 'Courier New',774 Screen.GetFontFromPointSize( 'Courier', 774 775 FMemoFont.PointSize ); 775 776 end … … 838 839 839 840 // print text that fits on this page 840 841 841 while P < EndP do 842 842 begin … … 933 933 nil // no vector of increments 934 934 ); 935 936 935 // subtract line height from vertical position 937 936 dec( Y, TextHeight ); … … 2284 2283 Description = 'Text Editor'; 2285 2284 2286 // BLDLevel - compatible - mostly2285 // BLDLevel-like info (not actually compatible with BLDLEVEL command) 2287 2286 EmbeddedVersion: string = 2288 2287 '@#'
Note:
See TracChangeset
for help on using the changeset viewer.