Changeset 470 for trunk/LocalPlayer
- Timestamp:
- Dec 3, 2023, 11:49:25 PM (12 months ago)
- Location:
- trunk/LocalPlayer
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LocalPlayer/Diagram.lfm
r232 r470 1 1 object DiaDlg: TDiaDlg 2 2 Left = 649 3 Width = 418 3 4 Top = 187 5 Height = 387 4 6 BorderIcons = [] 5 7 BorderStyle = bsNone -
trunk/LocalPlayer/Help.lfm
r458 r470 1 1 object HelpDlg: THelpDlg 2 2 Left = 394 3 Width = 560 3 4 Top = 180 5 Height = 479 4 6 BorderIcons = [] 5 7 BorderStyle = bsNone -
trunk/LocalPlayer/NatStat.lfm
r232 r470 1 1 object NatStatDlg: TNatStatDlg 2 2 Left = 192 3 Width = 400 3 4 Top = 119 5 Height = 480 4 6 BorderStyle = bsNone 5 7 ClientHeight = 480 -
trunk/LocalPlayer/NatStat.pas
r468 r470 109 109 if MainTexture.Age <> AgePrepared then begin 110 110 AgePrepared := MainTexture.Age; 111 BitBltCanvas(Back.Canvas, 0, 0, ClientWidth, ClientHeight,112 MainTexture.Image.Canvas, (MainTexture.Width - ClientWidth) div 2,113 (MainTexture.Height - ClientHeight) div 2);114 ImageOp_B(Back, Template, 0, 0, 0, 0, ClientWidth, ClientHeight);111 BitBltCanvas(Back.Canvas, 0, 0, Width, Height, 112 MainTexture.Image.Canvas, (MainTexture.Width - Width) div 2, 113 (MainTexture.Height - Height) div 2); 114 ImageOp_B(Back, Template, 0, 0, 0, 0, Width, Height); 115 115 end; 116 116 end; -
trunk/LocalPlayer/Rates.lfm
- Property svn:mime-type deleted
-
trunk/LocalPlayer/TechTree.lfm
- Property svn:mime-type deleted
-
trunk/LocalPlayer/Term.pas
r468 r470 2962 2962 begin 2963 2963 if ((ClientMode < scDipStart) or (ClientMode > scDipBreak)) and 2964 NegoDlg.Visible then2964 Assigned(FNegoDlg) and NegoDlg.Visible then 2965 2965 NegoDlg.Close; 2966 2966 Skipped := False; // always show my moves during my turn -
trunk/LocalPlayer/UnitStat.lfm
r40 r470 17 17 OnShow = FormShow 18 18 LCLVersion = '1.6.2.0' 19 PixelsPerInch = 96 20 Scaled = False 19 21 object SwitchBtn: TButtonB 20 22 Left = 12 -
trunk/LocalPlayer/Wonders.lfm
r232 r470 1 1 object WondersDlg: TWondersDlg 2 2 Left = 208 3 Width = 480 3 4 Top = 232 5 Height = 416 4 6 BorderStyle = bsNone 5 7 ClientHeight = 416
Note:
See TracChangeset
for help on using the changeset viewer.