Fixed start/finish point depth

This commit is contained in:
r.kuznetsov 2015-11-20 10:23:52 +03:00
parent ec4df7d2e8
commit 9db933c5f2

View file

@ -390,7 +390,7 @@ void RouteRenderer::CreateRoutePointGraphics(graphics::Screen * dlScreen, bool s
pnt.m_displayList = dlScreen->createDisplayList();
dlScreen->setDisplayList(pnt.m_displayList);
dlScreen->drawSymbol(pnt.m_point, start ? "route_from" : "route_to", graphics::EPosCenter, graphics::maxDepth);
dlScreen->drawSymbol(pnt.m_point, start ? "route_from" : "route_to", graphics::EPosCenter, graphics::routingFinishDepth);
dlScreen->setDisplayList(nullptr);
pnt.m_needUpdate = false;