The following functions are called even if ExternalWindow is set to false
SetActiveWindow
SetForegroundWindow
This causes the program to hang when using a child window handle, i think a check should be placed:
if(!ExternalWindow)
{
// set this as active window
SetActiveWindow(HWnd);
SetForegroundWindow(HWnd);
}
[fixed]CIrrDeviceWin32 SetActiveWindow Fail
-
- Admin
- Posts: 14143
- Joined: Wed Apr 19, 2006 9:20 pm
- Location: Oldenburg(Oldb), Germany
- Contact:
Re: CIrrDeviceWin32 SetActiveWindow SetForegroundWindow Fail
Yeah, ok, sounds reasonable. Will be fixed soon.