Changeset 118 for trunk/LocalPlayer


Ignore:
Timestamp:
Feb 3, 2018, 3:29:17 PM (7 years ago)
Author:
chronos
Message:
  • Modified: Set Bitmap size at once.
Location:
trunk/LocalPlayer
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LocalPlayer/BaseWin.pas

    r111 r118  
    55
    66uses
    7   ScreenTools, Messg,
    8 
    9   LCLIntf, LCLType, SysUtils, Classes, Graphics, Controls, Forms, DrawDlg;
     7  ScreenTools, LCLIntf, LCLType, SysUtils, Classes, Graphics, Controls, Forms,
     8  DrawDlg;
    109
    1110type
     
    471470  Offscreen := TBitmap.Create;
    472471  Offscreen.PixelFormat := pf24bit;
    473   Offscreen.Width := Screen.Width;
    474472  if Screen.Height - yUnused < 480 then
    475     Offscreen.Height := 480
    476   else
    477     Offscreen.Height := Screen.Height - yUnused;
     473    Offscreen.SetSize(Screen.Width, 480)
     474  else
     475    Offscreen.SetSize(Screen.Width, Screen.Height - yUnused);
    478476  Offscreen.Canvas.FillRect(0, 0, Offscreen.Width, OffScreen.Height);
    479477  Offscreen.Canvas.Brush.Style := bsClear;
  • trunk/LocalPlayer/Term.pas

    r111 r118  
    25572557        CityDlg.Reset;
    25582558
    2559         Mini.width := G.lx * 2;
    2560         Mini.height := G.ly;
     2559        Mini.SetSize(G.lx * 2, G.ly);
    25612560        for i := 0 to nPl - 1 do
    25622561        begin
     
    35483547  end;
    35493548  MapHeight := ClientHeight - TopBarHeight - PanelHeight + overlap;
    3550   Panel.width := ClientWidth;
    3551   Panel.height := PanelHeight;
    3552   TopBar.width := ClientWidth;
    3553   TopBar.height := TopBarHeight;
     3549  Panel.SetSize(ClientWidth, PanelHeight);
     3550  TopBar.SetSize(ClientWidth, TopBarHeight);
    35543551  MiniFrame := (lxmax_xxx - G.ly) div 2;
    35553552  xMidPanel := (G.lx + MiniFrame) * 2 + 1;
Note: See TracChangeset for help on using the changeset viewer.