| 2505 | } |
| 2506 | |
| 2507 | void Framework::SetLargeFontsSize(bool isLargeSize) |
| 2508 | { |
| 2509 | settings::Set(kLargeFontsSize, isLargeSize); |
| 2510 | |
| 2511 | double const scaleFactor = isLargeSize ? kLargeFontsScaleFactor : 1.0; |
| 2512 | |
| 2513 | ASSERT(m_drapeEngine.get() != nullptr, ()); |
| 2514 | m_drapeEngine->SetFontScaleFactor(scaleFactor); |
| 2515 | |
| 2516 | InvalidateRect(GetCurrentViewport()); |
| 2517 | } |
| 2518 | |
| 2519 | bool Framework::LoadTrafficEnabled() |
| 2520 | { |
no test coverage detected