Skip to content

Commit

Permalink
[Fgbg.as] specify width and height
Browse files Browse the repository at this point in the history
  • Loading branch information
godfat committed Nov 11, 2009
1 parent e3d4452 commit f2dc4fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions org/godfat/fgbg/Fgbg.as
Expand Up @@ -8,8 +8,8 @@ public class Fgbg{
parent_ = parent;
body_ = Sprite(parent_.addChild(new Sprite()));

fg_ = new Wrapper(uri_fg, body_);
bg_ = new Wrapper(uri_bg, body_);
fg_ = new Wrapper(uri_fg, body_, parent_.width, parent_.height);
bg_ = new Wrapper(uri_bg, body_, parent_.width, parent_.height);
}

public function get fg(){ return fg_; }
Expand Down

0 comments on commit f2dc4fc

Please sign in to comment.