From 8952d505c29b8878985f3fd7b31742556ebcfdbf Mon Sep 17 00:00:00 2001 From: Cedric BAIL Date: Tue, 20 Dec 2016 15:39:08 -0800 Subject: [PATCH] elementary: fix float comparison warning for panes. --- src/lib/elementary/elm_panes.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/elementary/elm_panes.c b/src/lib/elementary/elm_panes.c index 3b70dc6..509ca30 100644 --- a/src/lib/elementary/elm_panes.c +++ b/src/lib/elementary/elm_panes.c @@ -100,8 +100,8 @@ _elm_panes_elm_widget_focus_next(Eo *obj, Elm_Panes_Data *sd, Elm_Focus_Directio left = elm_layout_content_get(obj, "left"); right = elm_layout_content_get(obj, "right"); - if (((sd->orientation == EFL_ORIENT_HORIZONTAL) && (h == 0.0)) || - ((sd->orientation == EFL_ORIENT_VERTICAL) && (w == 0.0))) + if (((sd->orientation == EFL_ORIENT_HORIZONTAL) && (EINA_DBL_CMP(h, 0.0))) || + ((sd->orientation == EFL_ORIENT_VERTICAL) && (EINA_DBL_CMP(w, 0.0)))) { return elm_widget_focus_next_get(right, dir, next, next_item); } -- 2.7.4