| 2623 | } |
| 2624 | |
| 2625 | void FrontendRenderer::ScheduleOverlayCollecting() |
| 2626 | { |
| 2627 | auto const kCollectingEventsPeriod = std::chrono::seconds(10); |
| 2628 | m_notifier->Notify(ThreadsCommutator::RenderThread, kCollectingEventsPeriod, true /* repeating */, [this](uint64_t) |
| 2629 | { |
| 2630 | if (m_overlaysTracker->IsValid()) |
| 2631 | CollectShowOverlaysEvents(); |
| 2632 | }); |
| 2633 | } |
| 2634 | |
| 2635 | void FrontendRenderer::SearchInNonDisplaceableUserMarksLayer(ScreenBase const & modelView, DepthLayer layerId, |
| 2636 | m2::RectD const & selectionRect, |