raster pushed a commit to branch master. http://git.enlightenment.org/core/elementary.git/commit/?id=cbdab7fe04657c725d1ca9bf383d4c0a828abf46
commit cbdab7fe04657c725d1ca9bf383d4c0a828abf46 Author: Carsten Haitzler (Rasterman) <[email protected]> Date: Thu Apr 3 19:34:43 2014 +0900 fix eina log err for mirro set this fixes T1104 --- src/lib/elm_panel.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib/elm_panel.c b/src/lib/elm_panel.c index c9fb2c8..9357030 100644 --- a/src/lib/elm_panel.c +++ b/src/lib/elm_panel.c @@ -33,7 +33,8 @@ _mirrored_set(Evas_Object *obj, { ELM_PANEL_DATA_GET(obj, sd); - elm_widget_mirrored_set(sd->bx, rtl); + if ((sd->content) && (eo_isa(sd->content, ELM_OBJ_WIDGET_CLASS))) + elm_widget_mirrored_set(sd->content, rtl); elm_panel_orient_set(obj, elm_panel_orient_get(obj)); } --
