Changeset 470
- Timestamp:
- Dec 3, 2023, 11:49:25 PM (12 months ago)
- Location:
- trunk
- Files:
-
- 11 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 -
trunk/Start.pas
r469 r470 229 229 end; 230 230 LoadConfig; 231 //LoadAssets;231 LoadAssets; 232 232 LoadLanguages; 233 233 … … 1622 1622 for I := 0 to ControlCount - 1 do 1623 1623 Controls[I].Visible := Controls[I].Tag and (256 shl Integer(Page)) <> 0; 1624 SmartInvalidate(328, Up1Btn. top - 12, ClientWidth, Up2Btn.top + 35);1624 SmartInvalidate(328, Up1Btn.Top - 12, ClientWidth, Up2Btn.Top + 35); 1625 1625 end; 1626 1626 if Page = pgLoad then
Note:
See TracChangeset
for help on using the changeset viewer.