Some EVE clients should not be minimized even if the 'Minimize inactive clients' option is enabled

This commit is contained in:
Anton Kasyanov
2018-03-29 01:34:49 +03:00
parent a810539a19
commit fda4d9f0a9
3 changed files with 11 additions and 1 deletions

View File

@@ -334,7 +334,7 @@ namespace EveOPreview.Services
}
// Minimize the currently active client if needed
if (this._configuration.MinimizeInactiveClients)
if (this._configuration.MinimizeInactiveClients && !this._configuration.IsPriorityClient(this._activeClient.Title))
{
this._windowManager.MinimizeWindow(this._activeClient.Handle, false);
}