diff options
author | Kazumasa Mitsunari <knimitz@witz-inc.co.jp> | 2018-07-08 10:35:15 +0900 |
---|---|---|
committer | Kazumasa Mitsunari <knimitz@witz-inc.co.jp> | 2018-07-10 22:30:40 +0900 |
commit | 6e8ca74a266a224d2754a5f2ed0e228fec2e5c96 (patch) | |
tree | 46f9d874a041be7db324047ead4118538cff8c44 /src/db | |
parent | c3c367949eb63dbde4447d0c818e8af608398514 (diff) |
Forbid negative value for area size
It is not intuitive to set negative value as size.
So forbit negative value.
Change-Id: I49480653284158b6d1bfcb22a71d9882ed958518
Signed-off-by: Kazumasa Mitsunari <knimitz@witz-inc.co.jp>
Diffstat (limited to 'src/db')
-rw-r--r-- | src/db/areas.db | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/db/areas.db b/src/db/areas.db index 6c79bbf..03ddfe4 100644 --- a/src/db/areas.db +++ b/src/db/areas.db @@ -5,8 +5,8 @@ "rect": { "x": 0, "y": 0, - "w": -1, - "h": -1 + "w": 1080, + "h": 1920 } }, { @@ -14,8 +14,8 @@ "rect": { "x": 0, "y": 218, - "w": -1, - "h": -433 + "w": 1080, + "h": 1488 } }, { @@ -23,7 +23,7 @@ "rect": { "x": 0, "y": 218, - "w": -1, + "w": 1080, "h": 744 } }, @@ -32,7 +32,7 @@ "rect": { "x": 0, "y": 962, - "w": -1, + "w": 1080, "h": 744 } }, @@ -41,7 +41,7 @@ "rect": { "x": 0, "y": 962, - "w": -1, + "w": 1080, "h": 744 } }, @@ -50,8 +50,8 @@ "rect": { "x": 0, "y": 218, - "w": -1, - "h": -433 + "w": 1080, + "h": 1488 } }, { @@ -59,7 +59,7 @@ "rect": { "x": 0, "y": 218, - "w": -1, + "w": 1080, "h": 744 } }, @@ -68,7 +68,7 @@ "rect": { "x": 0, "y": 962, - "w": -1, + "w": 1080, "h": 744 } }, @@ -77,8 +77,8 @@ "rect": { "x": 0, "y": 218, - "w": -1, - "h": -433 + "w": 1080, + "h": 1488 } } ] |