| 151 | } |
| 152 | |
| 153 | void DrawWidget::PrepareShutdown() |
| 154 | { |
| 155 | auto & routingManager = m_framework.GetRoutingManager(); |
| 156 | if (routingManager.IsRoutingActive() && routingManager.IsRoutingFollowing()) |
| 157 | { |
| 158 | routingManager.SaveRoutePoints(); |
| 159 | |
| 160 | auto style = m_framework.GetMapStyle(); |
| 161 | m_framework.MarkMapStyle(MapStyleIsDark(style) ? MapStyle::MapStyleDefaultDark : MapStyle::MapStyleDefaultLight); |
| 162 | } |
| 163 | } |
| 164 | |
| 165 | void DrawWidget::UpdateAfterSettingsChanged() |
| 166 | { |
no test coverage detected