Skip to content

Commit

Permalink
CGUIWindowManager: force close closing dialogs/windows during DeIniti…
Browse files Browse the repository at this point in the history
…alize()
  • Loading branch information
Montellese authored and popcornmix committed Mar 2, 2015
1 parent 1d54b18 commit c84d89c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xbmc/guilib/GUIWindowManager.cpp
Expand Up @@ -1068,7 +1068,7 @@ void CGUIWindowManager::DeInitialize()
for (WindowMap::iterator it = m_mapWindows.begin(); it != m_mapWindows.end(); ++it)
{
CGUIWindow* pWindow = (*it).second;
if (IsWindowActive(it->first))
if (IsWindowActive(it->first, false))
{
pWindow->DisableAnimations();
pWindow->Close(true);
Expand Down

0 comments on commit c84d89c

Please sign in to comment.