Changeset 361 for branches/highdpi/LocalPlayer/Nego.pas
- Timestamp:
- Apr 9, 2021, 5:56:50 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/highdpi/LocalPlayer/Nego.pas
r349 r361 144 144 cix: integer; 145 145 begin 146 InitButtons ();146 InitButtons; 147 147 for cix := 0 to ComponentCount - 1 do 148 148 if Components[cix] is TButtonN then … … 510 510 511 511 Fill(Offscreen.Canvas, 3, 3, ClientWidth - 6, ClientHeight - 6, 512 ( wMaintexture - ClientWidth) div 2, (hMaintexture- ClientHeight) div 2);512 (Maintexture.Width - ClientWidth) div 2, (Maintexture.Height - ClientHeight) div 2); 513 513 Frame(Offscreen.Canvas, 0, 0, ClientWidth - 1, ClientHeight - 1, 0, 0); 514 514 Frame(Offscreen.Canvas, 1, 1, ClientWidth - 2, ClientHeight - 2, 515 MainTexture. clBevelLight, MainTexture.clBevelShade);515 MainTexture.ColorBevelLight, MainTexture.ColorBevelShade); 516 516 Frame(Offscreen.Canvas, 2, 2, ClientWidth - 3, ClientHeight - 3, 517 MainTexture. clBevelLight, MainTexture.clBevelShade);517 MainTexture.ColorBevelLight, MainTexture.ColorBevelShade); 518 518 Corner(Offscreen.Canvas, 1, 1, 0, MainTexture); 519 519 Corner(Offscreen.Canvas, ClientWidth - 9, 1, 1, MainTexture); … … 565 565 with Offscreen.Canvas do 566 566 begin 567 Brush.Color := MainTexture. clBevelShade;567 Brush.Color := MainTexture.ColorBevelShade; 568 568 if History[me].Text[Page - 1] <> '' then 569 569 begin
Note:
See TracChangeset
for help on using the changeset viewer.