forked from organicmaps/organicmaps-tmp
Fixed freeze on traffic turning on
This commit is contained in:
parent
fce37cc9a0
commit
17d3a0abb9
2 changed files with 5 additions and 0 deletions
|
@ -101,6 +101,7 @@ void TrafficManager::SetEnabled(bool enabled)
|
|||
void TrafficManager::Clear()
|
||||
{
|
||||
m_mwmCache.clear();
|
||||
m_lastMwmsByRect.clear();
|
||||
m_activeMwms.clear();
|
||||
m_requestedMwms.clear();
|
||||
}
|
||||
|
@ -147,6 +148,9 @@ void TrafficManager::UpdateViewport(ScreenBase const & screen)
|
|||
|
||||
// Request traffic.
|
||||
auto mwms = m_getMwmsByRectFn(screen.ClipRect());
|
||||
if (m_lastMwmsByRect == mwms)
|
||||
return;
|
||||
m_lastMwmsByRect = mwms;
|
||||
|
||||
{
|
||||
lock_guard<mutex> lock(m_mutex);
|
||||
|
|
|
@ -133,6 +133,7 @@ private:
|
|||
bool m_isRunning;
|
||||
condition_variable m_condition;
|
||||
|
||||
vector<MwmSet::MwmId> m_lastMwmsByRect;
|
||||
set<MwmSet::MwmId> m_activeMwms;
|
||||
|
||||
vector<MwmSet::MwmId> m_requestedMwms;
|
||||
|
|
Loading…
Add table
Reference in a new issue