hermet pushed a commit to branch master.

http://git.enlightenment.org/core/elementary.git/commit/?id=80c1840c3cb2f94f123b1051d108eeb023751722

commit 80c1840c3cb2f94f123b1051d108eeb023751722
Author: woochan lee <wc0917....@samsung.com>
Date:   Fri Aug 28 19:40:27 2015 +0900

    multibuttonentry: Fix mbe  clicked signal is not work.
    
    Summary:
    MBE clicked callback doesn't called when user click label, padding area of 
MBE.
    Because of the MBE edc only has the SWALLOW part for internal box. never 
emit the signal for clicked.
    So i added RECT part for bg of mbe.
    
    @fix
    
    Test Plan: Run elementary_test -> execute multibuttonentry sample.
    
    Reviewers: seoz, woohyun, cedric, Hermet
    
    Reviewed By: Hermet
    
    Subscribers: cedric
    
    Differential Revision: https://phab.enlightenment.org/D2821
---
 data/themes/edc/elm/multibuttonentry.edc | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/data/themes/edc/elm/multibuttonentry.edc 
b/data/themes/edc/elm/multibuttonentry.edc
index 5c19209..35eddca 100644
--- a/data/themes/edc/elm/multibuttonentry.edc
+++ b/data/themes/edc/elm/multibuttonentry.edc
@@ -3,9 +3,17 @@ group { name: "elm/multibuttonentry/base/default";
    data.item: "vertical_pad" 0;
    data.item: "closed_height" 0;
    parts {
+      part { name: "bg";
+         type: RECT;
+         scale: 1;
+         description { state: "default" 0.0;
+            color: 0 0 0 0;
+         }
+      }
       part { name: "box.swallow"; type: SWALLOW;
          description { state: "default" 0.0;
-            align: 0.0 0.0;
+            rel1.to: "bg";
+            rel2.to: "bg";
          }
       }
    }

-- 


Reply via email to