diff options
-rw-r--r-- | src/lib/edje/edje_embryo.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/lib/edje/edje_embryo.c b/src/lib/edje/edje_embryo.c index 9c5c1246c0..a246499ff4 100644 --- a/src/lib/edje/edje_embryo.c +++ b/src/lib/edje/edje_embryo.c | |||
@@ -2732,6 +2732,8 @@ _edje_embryo_fn_set_state_val(Embryo_Program *ep, Embryo_Cell *params) | |||
2732 | 2732 | ||
2733 | box = (Edje_Part_Description_Box *)rp->custom->description; | 2733 | box = (Edje_Part_Description_Box *)rp->custom->description; |
2734 | box->box.layout = s; | 2734 | box->box.layout = s; |
2735 | |||
2736 | break; | ||
2735 | } | 2737 | } |
2736 | 2738 | ||
2737 | case EDJE_STATE_PARAM_BOX_FALLBACK_LAYOUT: | 2739 | case EDJE_STATE_PARAM_BOX_FALLBACK_LAYOUT: |
@@ -2745,6 +2747,8 @@ _edje_embryo_fn_set_state_val(Embryo_Program *ep, Embryo_Cell *params) | |||
2745 | 2747 | ||
2746 | box = (Edje_Part_Description_Box *)rp->custom->description; | 2748 | box = (Edje_Part_Description_Box *)rp->custom->description; |
2747 | box->box.alt_layout = s; | 2749 | box->box.alt_layout = s; |
2750 | |||
2751 | break; | ||
2748 | } | 2752 | } |
2749 | 2753 | ||
2750 | case EDJE_STATE_PARAM_BOX_ALIGN: | 2754 | case EDJE_STATE_PARAM_BOX_ALIGN: |
@@ -2756,6 +2760,8 @@ _edje_embryo_fn_set_state_val(Embryo_Program *ep, Embryo_Cell *params) | |||
2756 | box = (Edje_Part_Description_Box *)rp->custom->description; | 2760 | box = (Edje_Part_Description_Box *)rp->custom->description; |
2757 | GETFLOAT_T(box->box.align.x, params[3]); | 2761 | GETFLOAT_T(box->box.align.x, params[3]); |
2758 | GETFLOAT_T(box->box.align.y, params[4]); | 2762 | GETFLOAT_T(box->box.align.y, params[4]); |
2763 | |||
2764 | break; | ||
2759 | } | 2765 | } |
2760 | 2766 | ||
2761 | case EDJE_STATE_PARAM_BOX_PADDING: | 2767 | case EDJE_STATE_PARAM_BOX_PADDING: |
@@ -2767,6 +2773,8 @@ _edje_embryo_fn_set_state_val(Embryo_Program *ep, Embryo_Cell *params) | |||
2767 | box = (Edje_Part_Description_Box *)rp->custom->description; | 2773 | box = (Edje_Part_Description_Box *)rp->custom->description; |
2768 | GETINT(box->box.padding.x, params[3]); | 2774 | GETINT(box->box.padding.x, params[3]); |
2769 | GETINT(box->box.padding.y, params[4]); | 2775 | GETINT(box->box.padding.y, params[4]); |
2776 | |||
2777 | break; | ||
2770 | } | 2778 | } |
2771 | 2779 | ||
2772 | case EDJE_STATE_PARAM_BOX_MIN: | 2780 | case EDJE_STATE_PARAM_BOX_MIN: |
@@ -2778,6 +2786,8 @@ _edje_embryo_fn_set_state_val(Embryo_Program *ep, Embryo_Cell *params) | |||
2778 | box = (Edje_Part_Description_Box *)rp->custom->description; | 2786 | box = (Edje_Part_Description_Box *)rp->custom->description; |
2779 | GETINT(box->box.min.h, params[3]); | 2787 | GETINT(box->box.min.h, params[3]); |
2780 | GETINT(box->box.min.v, params[4]); | 2788 | GETINT(box->box.min.v, params[4]); |
2789 | |||
2790 | break; | ||
2781 | } | 2791 | } |
2782 | 2792 | ||
2783 | #ifdef HAVE_EPHYSICS | 2793 | #ifdef HAVE_EPHYSICS |