Fix for the detection of the currently active non-EVE app
This commit is contained in:
@@ -195,9 +195,14 @@ namespace EveOPreview.Services
|
|||||||
foregroundWindowTitle = foregroundView.Title;
|
foregroundWindowTitle = foregroundView.Title;
|
||||||
}
|
}
|
||||||
else if (!isClientWindow)
|
else if (!isClientWindow)
|
||||||
|
{
|
||||||
|
// Under some circumstances Foreground WindowHandle can be zero
|
||||||
|
// (f.e. when Thumbnail is silently stealing focus from the currently open app)
|
||||||
|
if (foregroundWindowHandle != IntPtr.Zero)
|
||||||
{
|
{
|
||||||
this._externalApplication = foregroundWindowHandle;
|
this._externalApplication = foregroundWindowHandle;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// No need to minimize EVE clients when switching out to non-EVE window (like thumbnail)
|
// No need to minimize EVE clients when switching out to non-EVE window (like thumbnail)
|
||||||
if (!string.IsNullOrEmpty(foregroundWindowTitle))
|
if (!string.IsNullOrEmpty(foregroundWindowTitle))
|
||||||
|
|||||||
Reference in New Issue
Block a user