From 4afca75666a0f3bdd56e7371f000db6643182900 Mon Sep 17 00:00:00 2001 From: AJ Kelly Date: Mon, 17 May 2010 13:28:47 -0500 Subject: [PATCH] add SetSize as an alias for setsize --- Themes/_fallback/Scripts/01 alias.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Themes/_fallback/Scripts/01 alias.lua b/Themes/_fallback/Scripts/01 alias.lua index 452d32b9a0..e8b1c33d8c 100644 --- a/Themes/_fallback/Scripts/01 alias.lua +++ b/Themes/_fallback/Scripts/01 alias.lua @@ -7,4 +7,8 @@ wouldn't otherwise belong somewhere else. -- in fact, this probably belongs in Sprite.lua... function Sprite:cropto(w,h) self:CropTo(w,h); +end; + +function Actor:SetSize(w,h) + self:setsize(w,h); end; \ No newline at end of file