diff options
author | Marcus Fritzsch <marcus_fritzsch@mentor.com> | 2017-08-15 16:00:51 +0200 |
---|---|---|
committer | Marcus Fritzsch <marcus_fritzsch@mentor.com> | 2017-08-15 16:32:20 +0200 |
commit | d08e5d1a943b65ece5ca519c200ab2c0359f51d7 (patch) | |
tree | 142f0a878c31aa84024c23418e24196108417686 /layers.json | |
parent | 90058eca3f26be0ad4139465eacec236ec08a980 (diff) |
layers: remove last remnants of get<T> to read ints from json
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
Diffstat (limited to 'layers.json')
-rw-r--r-- | layers.json | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/layers.json b/layers.json index b5973a0..0208502 100644 --- a/layers.json +++ b/layers.json @@ -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 } } } ], |