summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Firebaugh <john.firebaugh@gmail.com>2014-08-27 17:31:32 -0700
committerJohn Firebaugh <john.firebaugh@gmail.com>2014-08-27 17:31:32 -0700
commita62a826b56b0150b3aebe81fb2b42fe6eb84c0b6 (patch)
treec6b1076d9a5866e478fcfa9ae4b6365561897ddd
parenta9748d9175da0a20fef47f9734888cb68190f4f2 (diff)
downloadqtlocation-mapboxgl-a62a826b56b0150b3aebe81fb2b42fe6eb84c0b6.tar.gz
raster-fade -> raster-fade-duration
-rw-r--r--src/style/style_parser.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/style/style_parser.cpp b/src/style/style_parser.cpp
index 2fccf1f404..88be68eb4f 100644
--- a/src/style/style_parser.cpp
+++ b/src/style/style_parser.cpp
@@ -633,8 +633,8 @@ void StyleParser::parseStyle(JSVal value, ClassProperties &klass) {
parseOptionalProperty<PropertyTransition>("transition-raster-saturation", Key::RasterSaturation, klass, value);
parseOptionalProperty<Function<float>>("raster-contrast", Key::RasterContrast, klass, value);
parseOptionalProperty<PropertyTransition>("transition-raster-contrast", Key::RasterContrast, klass, value);
- parseOptionalProperty<Function<float>>("raster-fade", Key::RasterFade, klass, value);
- parseOptionalProperty<PropertyTransition>("transition-raster-fade", Key::RasterFade, klass, value);
+ parseOptionalProperty<Function<float>>("raster-fade-duration", Key::RasterFade, klass, value);
+ parseOptionalProperty<PropertyTransition>("transition-raster-fade-duration", Key::RasterFade, klass, value);
parseOptionalProperty<Function<Color>>("background-color", Key::BackgroundColor, klass, value);
}