summaryrefslogtreecommitdiff
path: root/src/mbgl/annotation/shape_annotation_impl.cpp
diff options
context:
space:
mode:
authorJohn Firebaugh <john.firebaugh@gmail.com>2016-04-19 10:12:23 -0700
committerJohn Firebaugh <john.firebaugh@gmail.com>2016-04-21 14:05:40 -0700
commit2df1c36ab82af663c6f612da2ffda1fdc13531c2 (patch)
tree0fde1733d2fcb2ee15967da15035716154c35618 /src/mbgl/annotation/shape_annotation_impl.cpp
parenta14f0d2eddd4d9eb1bbf33fed3bfffe2329acf5e (diff)
downloadqtlocation-mapboxgl-2df1c36ab82af663c6f612da2ffda1fdc13531c2.tar.gz
[core] JoinType ⇢ LineJoinType
Diffstat (limited to 'src/mbgl/annotation/shape_annotation_impl.cpp')
-rw-r--r--src/mbgl/annotation/shape_annotation_impl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mbgl/annotation/shape_annotation_impl.cpp b/src/mbgl/annotation/shape_annotation_impl.cpp
index cac5fa0725..380a5b7746 100644
--- a/src/mbgl/annotation/shape_annotation_impl.cpp
+++ b/src/mbgl/annotation/shape_annotation_impl.cpp
@@ -31,7 +31,7 @@ void ShapeAnnotationImpl::updateStyle(Style& style) {
type = geojsonvt::ProjectedFeatureType::LineString;
std::unique_ptr<LineLayer> layer = std::make_unique<LineLayer>();
- layer->layout.join = JoinType::Round;
+ layer->layout.join = LineJoinType::Round;
const LineAnnotationProperties& properties = shape.properties.get<LineAnnotationProperties>();
layer->paint.opacity = properties.opacity;