layers: remove last remnants of get<T> to read ints from json
[staging/windowmanager.git] / layers.json
index b5973a0..0208502 100644 (file)
@@ -2,25 +2,25 @@
    "comment": "Surface ID to Layer ID mapping",
 
    "main_surface": {
-      "surface_id": "1000",
+      "surface_id": 1000,
       "comment": "This surface should never be made invisible (The HomeScreen)"
    },
 
    "layers": [
       {
          "name": "HomeScreen",
-         "layer_id": "1000",
+         "layer_id": 1000,
          "area": { "type": "full" }
       },
       {
          "name": "Apps",
-         "layer_id": "1001",
-         "area": { "type": "rect", "rect": { "x": "0", "y": "100", "width": "-1", "height": "-201" } }
+         "layer_id": 1001,
+         "area": { "type": "rect", "rect": { "x": 0, "y": 100, "width": -1, "height": -201 } }
       },
       {
          "name": "Popups",
-         "layer_id": "9999",
-         "area": { "type": "rect", "rect": { "x": "0", "y": "100", "width": "-1", "height": "-201" } }
+         "layer_id": 9999,
+         "area": { "type": "rect", "rect": { "x": 0, "y": 100, "width": -1, "height": -201 } }
       }
    ],