Fix for BUG-3838 - send_agent_resume() not called after snapshot

master
Cinders 2013-09-10 16:02:53 -06:00
parent a0dce728ec
commit 5d72fa20b7
1 changed files with 6 additions and 0 deletions

View File

@ -933,8 +933,14 @@ BOOL LLFilePicker::getSaveFile(ESaveFilter filter, const std::string& filename,
success = false;
}
// <FS:CR>
if (blocking)
{
send_agent_resume();
// </FS:CR>
// Account for the fact that the app has been stalled.
LLFrameTimer::updateFrameTime();
}
return success;
}
//END LL_DARWIN