Changeset 104 for trunk/LocalPlayer
- Timestamp:
- Jan 25, 2018, 11:03:52 PM (7 years ago)
- Location:
- trunk/LocalPlayer
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LocalPlayer/BaseWin.pas
r103 r104 236 236 ModalIndication := true; 237 237 Canvas.Brush.Style := bsClear; 238 InnerWidth := ClientWidth - 2 * SideFrame;239 InnerHeight := ClientHeight - TitleHeight - NarrowFrame;238 InnerWidth := Width - 2 * SideFrame; 239 InnerHeight := Height - TitleHeight - NarrowFrame; 240 240 end; 241 241 -
trunk/LocalPlayer/Draft.pas
r73 r104 88 88 Back := TBitmap.Create; 89 89 Back.PixelFormat := pf24bit; 90 Back.SetSize( ClientWidth, ClientHeight);90 Back.SetSize(Width, Height); 91 91 Back.Canvas.FillRect(0, 0, Back.Width, Back.Height); 92 92 Template := TBitmap.Create; -
trunk/LocalPlayer/NatStat.pas
r73 r104 89 89 Back := TBitmap.Create; 90 90 Back.PixelFormat := pf24bit; 91 Back.SetSize( ClientWidth, ClientHeight);91 Back.SetSize(Width, Height); 92 92 Back.Canvas.FillRect(0, 0, Back.Width, Back.Height); 93 93 Template := TBitmap.Create;
Note:
See TracChangeset
for help on using the changeset viewer.