Fallback handled. Yes, I tested this.

This commit is contained in:
Jason Felds
2013-07-03 20:08:34 -04:00
parent a5ef44a838
commit 986d510a88
29 changed files with 1314 additions and 793 deletions
@@ -6,6 +6,10 @@ t[#t+1] = LoadFont("Common Normal") .. {
Text=gc:GetName();
};
t.GainFocusCommand=cmd(visible,true);
t.LoseFocusCommand=cmd(visible,false);
t.GainFocusCommand=function(self)
self:visible(true);
end;
t.LoseFocusCommand=function(self)
self:visible(false);
end;
return t;