Bug 940101 - Switching between Firefox Desktop/Firefox Metro environments not always working. r=jimm

When mShuttingDown is true, and the CEH is running, it bails out after the GetValue call and
doesn't call Execute.  When we return S_OK instead of E_FAIL everything works as expected.
This commit is contained in:
Brian R. Bondy 2013-12-02 09:58:51 -05:00
parent 82c49a0793
commit 408fa75498

View File

@ -414,7 +414,7 @@ FrameworkView::OnWindowActivated(ICoreWindow* aSender, IWindowActivatedEventArgs
{
LogFunction();
if (mShuttingDown || !mWidget)
return E_FAIL;
return S_OK;
CoreWindowActivationState state;
aArgs->get_WindowActivationState(&state);
mWinActiveState = !(state == CoreWindowActivationState::CoreWindowActivationState_Deactivated);