summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDane Springmeyer <dane@mapbox.com>2014-10-31 16:26:24 -0400
committerJohn Firebaugh <john.firebaugh@gmail.com>2014-10-31 17:14:30 -0400
commitb2032103f2fc8567d623a311ff612853d8bce048 (patch)
tree93357ad2a8ea7a0cef907140a47118c0677a0713
parent28bfdbb9e4c28d91f35c2ab2e248693e0e8f0307 (diff)
downloadqtlocation-mapboxgl-b2032103f2fc8567d623a311ff612853d8bce048.tar.gz
linux app: fix path to styles
-rw-r--r--linux/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/main.cpp b/linux/main.cpp
index fa4a495837..7b96a349e1 100644
--- a/linux/main.cpp
+++ b/linux/main.cpp
@@ -65,7 +65,7 @@ int main(int argc, char *argv[]) {
}
// Load style
- const std::string style = std::string("file://") + uv::cwd() + std::string("/styles/bright-v5.json");
+ const std::string style = std::string("file://") + uv::cwd() + std::string("/styles/styles/bright-v5.json");
map.setStyleURL(style);
int ret = view->run();