summaryrefslogtreecommitdiff
path: root/src/mbgl
diff options
context:
space:
mode:
authorKonstantin Käfer <mail@kkaefer.com>2018-02-21 12:35:44 +0100
committerKonstantin Käfer <mail@kkaefer.com>2018-02-27 17:22:54 +0100
commitaacd55c64b0bfdba457af5444a6965386aad6045 (patch)
tree482f5fa6308c12816ffc36f2a3efe445cfb515e3 /src/mbgl
parentca17625f1ced08afed6767345470b96f902faa88 (diff)
downloadqtlocation-mapboxgl-aacd55c64b0bfdba457af5444a6965386aad6045.tar.gz
[core] continue loading style even if we mutate it
When we load a stale style from cache, and the user immediately starts mutating it, we should continue loading the style so that we'll get a fresh copy of the data into our cache and avoid perpetually showing the stale style.
Diffstat (limited to 'src/mbgl')
-rw-r--r--src/mbgl/style/style_impl.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/mbgl/style/style_impl.cpp b/src/mbgl/style/style_impl.cpp
index 3214c6316e..39e1c17722 100644
--- a/src/mbgl/style/style_impl.cpp
+++ b/src/mbgl/style/style_impl.cpp
@@ -53,11 +53,6 @@ void Style::Impl::loadURL(const std::string& url_) {
url = url_;
styleRequest = fileSource.request(Resource::style(url), [this](Response res) {
- // Once we get a fresh style, or the style is mutated, stop revalidating.
- if (res.isFresh() || mutated) {
- styleRequest.reset();
- }
-
// Don't allow a loaded, mutated style to be overwritten with a new version.
if (mutated && loaded) {
return;