diff --git a/src/game/editor/map_grid.cpp b/src/game/editor/map_grid.cpp index b02701c68..4e7124555 100644 --- a/src/game/editor/map_grid.cpp +++ b/src/game/editor/map_grid.cpp @@ -63,7 +63,11 @@ void CMapGrid::OnRender(CUIRect View) int CMapGrid::GridLineDistance() const { - if(Editor()->MapView()->Zoom()->GetValue() <= 100.0f) + if(Editor()->MapView()->Zoom()->GetValue() <= 10.0f) + return 4; + else if(Editor()->MapView()->Zoom()->GetValue() <= 50.0f) + return 8; + else if(Editor()->MapView()->Zoom()->GetValue() <= 100.0f) return 16; else if(Editor()->MapView()->Zoom()->GetValue() <= 250.0f) return 32;