Use MENU_POP_DIRECTION_AUTO instead of DIRECTION_DOWN.

SVN revision: 43960
This commit is contained in:
Christopher Michael 2009-11-24 21:17:18 +00:00
parent 3c1c44191a
commit 09edadd2a5
2 changed files with 4 additions and 4 deletions

View File

@ -1907,7 +1907,7 @@ _e_gadcon_cb_client_mouse_down(void *data, Evas *evas, Evas_Object *obj, void *e
cy = cy + ev->output.y;
}
e_menu_activate_mouse(mn, zone, cx, cy, 1, 1,
E_MENU_POP_DIRECTION_DOWN, ev->timestamp);
E_MENU_POP_DIRECTION_AUTO, ev->timestamp);
}
}
@ -2552,7 +2552,7 @@ _e_gadcon_client_cb_mouse_down(void *data, Evas *e, Evas_Object *obj, void *even
e_menu_activate_mouse(mn, zone,
cx + ev->output.x,
cy + ev->output.y, 1, 1,
E_MENU_POP_DIRECTION_DOWN, ev->timestamp);
E_MENU_POP_DIRECTION_AUTO, ev->timestamp);
}
else if (ev->button == 1)
{

View File

@ -513,7 +513,7 @@ e_shelf_orient(E_Shelf *es, E_Gadcon_Orient orient)
_e_shelf_orient_string_get(es));
edje_object_signal_emit(es->o_base, buf, "e");
edje_object_message_signal_process(es->o_base);
e_gadcon_location_set_icon_name(es->gadcon->location, _e_shelf_orient_icon_name_get (es));
e_gadcon_location_set_icon_name(es->gadcon->location, _e_shelf_orient_icon_name_get(es));
e_zone_useful_geometry_dirty(es->zone);
}
@ -1342,7 +1342,7 @@ _e_shelf_cb_mouse_down(void *data, Evas *evas, Evas_Object *obj, void *event_inf
e_util_zone_current_get(e_manager_current_get()),
cx + ev->output.x,
cy + ev->output.y, 1, 1,
E_MENU_POP_DIRECTION_DOWN, ev->timestamp);
E_MENU_POP_DIRECTION_AUTO, ev->timestamp);
break;
}
}