support: use defined value 93/48993/1
authorMinkyu Kang <mk7.kang@samsung.com>
Mon, 5 Oct 2015 01:12:53 +0000 (10:12 +0900)
committerMinkyu Kang <mk7.kang@samsung.com>
Mon, 5 Oct 2015 01:12:53 +0000 (10:12 +0900)
Change-Id: Ic392e5a8bcc65f7cc2d3b380bc0386849c002a75
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
src/layout/layout_support.c

index 4e052bf..dfc3e16 100644 (file)
@@ -25,6 +25,9 @@
 #include "utils.h"
 #include "menumgr.h"
 
+#define PADDING_X 26
+#define PADDING_Y 26
+
 #define VERSION_UNKNOWN "Unknown"
 
 struct _priv {
@@ -124,7 +127,7 @@ static bool _add_layout_contents(struct _priv *priv)
        Evas_Object *table;
        struct menumgr *menu;
 
-       table = utils_add_table(priv->ly, 26, 26);
+       table = utils_add_table(priv->ly, PADDING_X, PADDING_Y);
        if (!table) {
                _ERR("failed to add table");
                return false;