diff options
author | Konstantin Käfer <mail@kkaefer.com> | 2014-07-22 17:19:07 +0200 |
---|---|---|
committer | Konstantin Käfer <mail@kkaefer.com> | 2014-07-22 17:19:07 +0200 |
commit | b5c406416ab93542535e70f0b5dbcb19529e565c (patch) | |
tree | ee85ec21124a7aeac775abd9745d527bc4b7b2b0 /include/mbgl/style | |
parent | d47f11574e25304ab11956ab92905d915a16c129 (diff) | |
download | qtlocation-mapboxgl-b5c406416ab93542535e70f0b5dbcb19529e565c.tar.gz |
read default values from property structs
fixes background color
Diffstat (limited to 'include/mbgl/style')
-rw-r--r-- | include/mbgl/style/style_properties.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mbgl/style/style_properties.hpp b/include/mbgl/style/style_properties.hpp index c7606be254..0414ac0472 100644 --- a/include/mbgl/style/style_properties.hpp +++ b/include/mbgl/style/style_properties.hpp @@ -94,7 +94,7 @@ struct RasterProperties { struct BackgroundProperties { inline BackgroundProperties() {} - Color color = {{ 1, 1, 1, 1 }}; + Color color = {{ 0, 0, 0, 1 }}; }; typedef util::variant< |