Changes the default style of the brush of a TFPImageCanvas to bsSolid

git-svn-id: trunk@16304 -
This commit is contained in:
sekelsenmat 2010-11-04 17:09:59 +00:00
parent 584fa63ea4
commit d077572f85

View File

@ -105,10 +105,7 @@ end;
function TFPPixelCanvas.DoCreateDefaultBrush : TFPCustomBrush;
begin
result := TFPEmptyBrush.Create;
with result do
begin
Style := bsClear;
end;
result.Style := bsSolid;
end;
procedure TFPPixelCanvas.DoTextOut (x,y:integer;text:string);