summaryrefslogtreecommitdiff
path: root/src/mbgl/style/style_layer.hpp
diff options
context:
space:
mode:
authorBruno de Oliveira Abinader <bruno@mapbox.com>2015-10-06 11:14:25 -0700
committerBruno de Oliveira Abinader <bruno@mapbox.com>2015-10-06 12:25:46 -0700
commit402819e1add767c11e691f209fa642ab807cf883 (patch)
tree08c1a41fba45cdc039052cc504c3dd0964d6b245 /src/mbgl/style/style_layer.hpp
parent71be6923a8150321796c8b0add220f3aea531cb2 (diff)
downloadqtlocation-mapboxgl-402819e1add767c11e691f209fa642ab807cf883.tar.gz
Fix for style properties transition updates
Diffstat (limited to 'src/mbgl/style/style_layer.hpp')
-rw-r--r--src/mbgl/style/style_layer.hpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mbgl/style/style_layer.hpp b/src/mbgl/style/style_layer.hpp
index 6d14e57e18..28d3f5ca9e 100644
--- a/src/mbgl/style/style_layer.hpp
+++ b/src/mbgl/style/style_layer.hpp
@@ -94,6 +94,10 @@ public:
// Stores the evaluated, and cascaded styling information, specific to this
// layer's type.
StyleProperties properties;
+
+private:
+ // Stores whether there are pending transitions to be done on each update.
+ bool hasPendingTransitions = false;
};
}