forked from organicmaps/organicmaps
Make GPS circle rendering faster: remove outline.
This commit is contained in:
parent
915502dca4
commit
74bd85865e
1 changed files with 1 additions and 1 deletions
|
@ -98,7 +98,7 @@ void InformationDisplay::drawPosition(DrawerYG * pDrawer)
|
|||
|
||||
double pxErrorRadius = pxPosition.Length(m_screen.GtoP(m_position + m2::PointD(m_errorRadius, 0)));
|
||||
|
||||
pDrawer->screen()->drawArc(pxPosition, 0, math::pi * 2, pxErrorRadius, yg::Color(0, 0, 255, m_mode == Locator::EPreciseMode ? 64 : 32), yg::maxDepth - 2);
|
||||
// pDrawer->screen()->drawArc(pxPosition, 0, math::pi * 2, pxErrorRadius, yg::Color(0, 0, 255, m_mode == Locator::EPreciseMode ? 64 : 32), yg::maxDepth - 2);
|
||||
pDrawer->screen()->fillSector(pxPosition, 0, math::pi * 2, pxErrorRadius, yg::Color(0, 0, 255, m_mode == Locator::EPreciseMode ? 64 : 32), yg::maxDepth - 3);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue