From 6e8ca74a266a224d2754a5f2ed0e228fec2e5c96 Mon Sep 17 00:00:00 2001 From: Kazumasa Mitsunari Date: Sun, 8 Jul 2018 10:35:15 +0900 Subject: 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 --- src/db/areas.db | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'src/db') 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 } } ] -- cgit 1.2.3-korg