mirror of
https://github.com/moparisthebest/Simba
synced 2024-11-22 09:12:19 -05:00
Fixed ActivateClient not getting called
git-svn-id: http://www.villavu.com/repositories/merlijn/mufasa@453 3f818213-9676-44b0-a9b4-5e4c4e03d09d
This commit is contained in:
parent
2b8721e6b0
commit
af6d0e398c
@ -363,7 +363,11 @@ begin
|
||||
end;
|
||||
|
||||
procedure TIOManager_Abstract.GetDimensions(var W, H: Integer); begin image.GetTargetDimensions(w,h) end;
|
||||
procedure TIOManager_Abstract.ActivateClient; begin {lolwat} end;
|
||||
procedure TIOManager_Abstract.ActivateClient;
|
||||
begin
|
||||
keymouse.ActivateClient();
|
||||
{not sure if image needs activation or not, if its a native window keymouse == image so it should be good.}
|
||||
end;
|
||||
|
||||
procedure TIOManager_Abstract.GetMousePos(var X, Y: Integer); begin keymouse.GetMousePosition(x,y) end;
|
||||
procedure TIOManager_Abstract.SetMousePos(X, Y: Integer); begin keymouse.MoveMouse(x,y); end;
|
||||
|
Loading…
Reference in New Issue
Block a user