hermet pushed a commit to branch elementary-1.15.

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

commit ce37c4aee008e0f3dcfab54af08a09d91f6c5e23
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 7c3f199..e5b513a 100644
--- a/data/themes/edc/elm/multibuttonentry.edc
+++ b/data/themes/edc/elm/multibuttonentry.edc
@@ -1,8 +1,16 @@
 group { name: "elm/multibuttonentry/base/default";
    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