Revert "MouseTest theme covered."

This reverts commit ca1b8cb942.
This commit is contained in:
Jason Felds
2013-07-18 17:41:35 -04:00
parent f5c5648bdd
commit 7f2fb952ca
4 changed files with 24 additions and 74 deletions
@@ -1,9 +1,6 @@
local t = Def.ActorFrame{
LoadActor(THEME:GetPathG("_click","target"))..{
InitCommand=function(self)
self:diffusealpha(0);
self:Real();
end;
InitCommand=cmd(diffusealpha,0;Real);
LeftClickMessageCommand=function(self)
MESSAGEMAN:Broadcast("MouseInput", { Input = "Left" });
end;
@@ -34,11 +31,7 @@ local t = Def.ActorFrame{
};
LoadFont("common normal")..{
Name="Coords";
InitCommand=function(self)
self:shadowlength(1);
self:zoom(0.5);
self:align(0, 1);
end;
InitCommand=cmd(shadowlength,1;zoom,0.5;align,0,1);
MouseInputMessageCommand=function(self,param)
local cX = INPUTFILTER:GetMouseX()
local cY = INPUTFILTER:GetMouseY()