hermet pushed a commit to branch master.

http://git.enlightenment.org/core/elementary.git/commit/?id=05a104a24d8276a2bcb79e10918e7e2398a6739f

commit 05a104a24d8276a2bcb79e10918e7e2398a6739f
Author: Jee-Yong Um <jc9...@samsung.com>
Date:   Fri Dec 19 14:27:00 2014 +0900

    elm_colorselector: fix not intended duplication
    
    Summary:
    When colorselector widget is added, there are two align set command on 
palette_box part,
    but that for picker part is omitted.
    Apply elm_box_align_set function to picker part correctly.
    
    @fix
    
    Reviewers: Hermet
    
    Reviewed By: Hermet
    
    Subscribers: Hermet
    
    Differential Revision: https://phab.enlightenment.org/D1790
---
 AUTHORS                     | 1 +
 src/lib/elm_colorselector.c | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/AUTHORS b/AUTHORS
index 7b1f314..34e5d98 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -160,3 +160,4 @@ Kabeer Khan <kabeer.k...@samsung.com>
 yinsc <shouchen....@samsung.com>
 Woochan Lee <wc0917....@samsung.com>
 Vitalii Vorobiov <vi.vorob...@samsung.com>
+Jee-Yong Um <con...@gmail.com>
diff --git a/src/lib/elm_colorselector.c b/src/lib/elm_colorselector.c
index 3d13d07..09942ca 100644
--- a/src/lib/elm_colorselector.c
+++ b/src/lib/elm_colorselector.c
@@ -1574,7 +1574,7 @@ _elm_colorselector_evas_object_smart_add(Eo *obj, 
Elm_Colorselector_Data *priv)
    elm_box_padding_set(priv->picker,
                        (h_pad * elm_widget_scale_get(obj) * 
elm_config_scale_get()),
                        (v_pad * elm_widget_scale_get(obj) * 
elm_config_scale_get()));
-   elm_box_align_set(priv->palette_box, 0.5, 0.5);
+   elm_box_align_set(priv->picker, 0.5, 0.5);
 
    priv->mode = ELM_COLORSELECTOR_BOTH;
    priv->focused = ELM_COLORSELECTOR_PALETTE;

-- 


Reply via email to