Changeset 58 for trunk/UGame.pas


Ignore:
Timestamp:
Sep 25, 2014, 3:24:18 PM (10 years ago)
Author:
chronos
Message:
  • Fixed: Background drawing problems of cells and arrows.
  • Added: Zooming actions added also to toolbar.
  • Added: Toolbar and statusbar visibility settings.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/UGame.pas

    r56 r58  
    540540    Points[I] := Point(Trunc(FPoints[I].X + Pos.X), Trunc(FPoints[I].Y + Pos.Y));
    541541  with Canvas do begin
     542    Brush.Style := bsSolid;
    542543    Polygon(Points);
    543544    Brush.Style := bsClear;
     
    660661    for I := 0 to Length(Points) - 1 do
    661662      Points[I] := View.CellToCanvasPos(Cell.Polygon[I]);
    662 
     663    Brush.Style := bsSolid;
    663664    Polygon(Points, False, 0, Length(Points));
    664665    Pen.Style := psSolid;
Note: See TracChangeset for help on using the changeset viewer.