From 648fb9590bbf8a8a3f5a874eb7f46f1634ae93ac Mon Sep 17 00:00:00 2001 From: kazu Date: Fri, 24 Mar 2017 10:05:51 +0100 Subject: [PATCH] changed layer order for better visibilitchanged layer order for better visibility --- mapview/model/MMRoot.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mapview/model/MMRoot.h b/mapview/model/MMRoot.h index bf1e33f..c4755c3 100644 --- a/mapview/model/MMRoot.h +++ b/mapview/model/MMRoot.h @@ -24,8 +24,8 @@ public: MMRoot(MapLayer* parent, Floorplan::IndoorMap* map) : MapLayer(parent), map(map) { // all floors - new MMRegistration(this, map); new MMFloors(this, map); + new MMRegistration(this, map); }