Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'drape_frontend/text_shape.cpp')
-rw-r--r--drape_frontend/text_shape.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/drape_frontend/text_shape.cpp b/drape_frontend/text_shape.cpp
index 1ee4643f5b..2da4abf3e5 100644
--- a/drape_frontend/text_shape.cpp
+++ b/drape_frontend/text_shape.cpp
@@ -105,10 +105,12 @@ void TextShape::Draw(dp::RefPointer<dp::Batcher> batcher, dp::RefPointer<dp::Tex
secondaryOffset += glsl::vec2(0.0, secondaryLayout.GetPixelSize().y / 2.0f);
}
- DrawSubString(secondaryLayout, m_params.m_secondaryTextFont, secondaryOffset, batcher, textures);
+ if (secondaryLayout.GetGlyphCount() > 0)
+ DrawSubString(secondaryLayout, m_params.m_secondaryTextFont, secondaryOffset, batcher, textures);
}
- DrawSubString(primaryLayout, m_params.m_primaryTextFont, primaryOffset, batcher, textures);
+ if (primaryLayout.GetGlyphCount() > 0)
+ DrawSubString(primaryLayout, m_params.m_primaryTextFont, primaryOffset, batcher, textures);
}
void TextShape::DrawSubString(StraightTextLayout const & layout,