[drape] to avoid second lock on model mutex on the same thread we call Framework::ReportInfo later through thread message loop

This commit is contained in:
ExMix 2015-08-14 16:12:23 +03:00 committed by r.kuznetsov
parent 96f1f2f9bd
commit eb752fcf9b

View file

@ -1,5 +1,7 @@
#include "storage_bridge.hpp"
#include "platform/platform.hpp"
#include "base/assert.hpp"
#include "base/macros.hpp"
@ -56,5 +58,5 @@ void StorageBridge::ReportChanges(ActiveMapsLayout::TGroup const & group, int po
storage::TIndex countryIndex = m_activeMaps->GetCoreIndex(group, position);
if (m_handler != nullptr)
m_handler(countryIndex);
GetPlatform().RunOnGuiThread(bind(m_handler, countryIndex));
}