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:
authorr.kuznetsov <r.kuznetsov@corp.mail.ru>2015-11-18 10:43:47 +0300
committerr.kuznetsov <r.kuznetsov@corp.mail.ru>2015-11-30 16:28:07 +0300
commitb577a55b1e0145ad94d25a96f32b6ffde38b4f49 (patch)
tree6dc5674afdd6b7850ca50381f4d56d6f003b68cd /drape_frontend/path_text_shape.cpp
parent7dd9f42abc0250b441e548b0423502a6dd6c857d (diff)
Fixed overlay priority comparison for text path shapes
Diffstat (limited to 'drape_frontend/path_text_shape.cpp')
-rw-r--r--drape_frontend/path_text_shape.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/drape_frontend/path_text_shape.cpp b/drape_frontend/path_text_shape.cpp
index 117c9e06bb..03f42e75e4 100644
--- a/drape_frontend/path_text_shape.cpp
+++ b/drape_frontend/path_text_shape.cpp
@@ -84,6 +84,11 @@ public:
TextHandle::GetAttributeMutation(mutator, screen);
}
+ uint64_t GetPriorityMask() const override
+ {
+ return dp::kPriorityMaskManual | dp::kPriorityMaskRank;
+ }
+
private:
m2::SharedSpline m_spline;
m2::Spline::iterator m_centerPointIter;