From 09429ebf83f97a6d44375b40ed5ee81ea3b80850 Mon Sep 17 00:00:00 2001 From: Christopher Michael Date: Wed, 27 Jan 2010 04:03:22 +0000 Subject: [PATCH] No space at all if indicator & softkey are not present. SVN revision: 45616 --- src/lib/elm_conform.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/elm_conform.c b/src/lib/elm_conform.c index 2a2265d..d182522 100644 --- a/src/lib/elm_conform.c +++ b/src/lib/elm_conform.c @@ -63,7 +63,7 @@ _prop_change(void *data, int type, void *event) ecore_x_e_illume_top_shelf_geometry_get(ecore_x_window_root_first_get(), NULL, NULL, NULL, &sh); - if (sh < 0) sh = 1; + if (sh < 0) sh = 0; evas_object_size_hint_min_set(wd->shelf, -1, sh); evas_object_size_hint_max_set(wd->shelf, -1, sh); #endif @@ -75,7 +75,7 @@ _prop_change(void *data, int type, void *event) ecore_x_e_illume_bottom_panel_geometry_get(ecore_x_window_root_first_get(), NULL, NULL, NULL, &sh); - if (sh < 0) sh = 1; + if (sh < 0) sh = 0; evas_object_size_hint_min_set(wd->panel, -1, sh); evas_object_size_hint_max_set(wd->panel, -1, sh); #endif -- 2.7.4