rimmed pushed a commit to branch master.

http://git.enlightenment.org/tools/eflete.git/commit/?id=402d4af416a6baf7399f292958709a6581fdf657

commit 402d4af416a6baf7399f292958709a6581fdf657
Author: Vyacheslav Reutskiy <v.reuts...@samsung.com>
Date:   Thu Mar 31 11:53:24 2016 +0300

    container: return the BASE_PADDING
    
    Now we not use the container padding, as it planed. Container have the
    base, fixed, padding, so this padding should return.
    
    TODO: clean up the code from old, unused, padding members
    
    Change-Id: I4dbfecea2ab5ecc115c1899934a29d5e3f0e556e
---
 src/bin/ui/workspace/container.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/bin/ui/workspace/container.c b/src/bin/ui/workspace/container.c
index f444834..972dc21 100644
--- a/src/bin/ui/workspace/container.c
+++ b/src/bin/ui/workspace/container.c
@@ -613,10 +613,10 @@ container_padding_size_get(Evas_Object *obj, int *tl_w, 
int *tl_h, int *br_w, in
 {
    CONTAINER_DATA_GET(obj, sd);
 
-   if (tl_w) *tl_w = sd->pad_left_top.w;
-   if (tl_h) *tl_h = sd->pad_left_top.h;
-   if (br_w) *br_w = sd->pad_right_bottom.w;
-   if (br_h) *br_h = sd->pad_right_bottom.h;
+   if (tl_w) *tl_w = BASE_PADDING;
+   if (tl_h) *tl_h = BASE_PADDING;
+   if (br_w) *br_w = BASE_PADDING;
+   if (br_h) *br_h = BASE_PADDING;
 
    return true;
 }

-- 


Reply via email to