diff options
author | Marcus Fritzsch <marcus_fritzsch@mentor.com> | 2017-08-09 16:16:38 +0200 |
---|---|---|
committer | Marcus Fritzsch <marcus_fritzsch@mentor.com> | 2017-08-11 10:13:48 +0200 |
commit | 90058eca3f26be0ad4139465eacec236ec08a980 (patch) | |
tree | 4144063e3d5348b9079ca9971d2b2f25277b2cd7 | |
parent | d79d0c83452212355d212e8fcd4ad5c27c1906fc (diff) |
layout.json: fix number strings into actual numbers.
Signed-off-by: Marcus Fritzsch <marcus_fritzsch@mentor.com>
-rw-r--r-- | layout.json | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/layout.json b/layout.json index be82f35..ad9e4c3 100644 --- a/layout.json +++ b/layout.json @@ -2,20 +2,20 @@ { "areas": [ { - "height": "1920", + "height": 1920, "name": "ControleBar", - "width": "1080", - "x": "0", - "y": "0", - "zorder": "0" + "width": 1080, + "x": 0, + "y": 0, + "zorder": 0 }, { - "height": "1920", + "height": 1920, "name": "HomeButton", - "width": "100", - "x": "0", - "y": "0", - "zorder": "0" + "width": 100, + "x": 0, + "y": 0, + "zorder": 0 } ], "name": "HomeScreenBasic" @@ -23,20 +23,20 @@ { "areas": [ { - "height": "1280", + "height": 1280, "name": "Main", - "width": "1080", - "x": "0", - "y": "300", - "zorder": "0" + "width": 1080, + "x": 0, + "y": 300, + "zorder": 0 }, { - "height": "1280", + "height": 1280, "name": "Sub", - "width": "1080", - "x": "0", - "y": "600", - "zorder": "0" + "width": 1080, + "x": 0, + "y": 600, + "zorder": 0 } ], "name": "ApssHalfBasic" |