k it seems to be fixed
gonna do some testing but this is what I did
I just dropped the whole focusInEvent method and used windowActivationChange instead
void vgui_qt_adaptor::windowActivationChange (bool oldActive)
{
if(!oldActive)
{
//-- Do something with the event here -> FocusGained
}
else
{
//-- Do something with the event here -> FocusLost
}
}
void vgui_qt_adaptor::windowActivationChange (bool oldActive)
{
if(!oldActive)
{
//-- Do something with the event here -> FocusGained
}
else
{
//-- Do something with the event here -> FocusLost
}
}
To copy to clipboard, switch view to plain text mode
this seems to do the job much better then the focusInEvent
thx to wysota for trying to help me anyways 
grtx Xplizion
Bookmarks