On Fri, 21 Nov 2014 09:44:28 +0100 <[email protected]> said: > Hi, > A weird behaviour showed up in my EFL app, I am still trying to figure > out how to fix this. > > In the hierarchical menu of my app, several views of genlists are pushed > on the naviframe while going down the list tree. Then, a new pop-up is > pushed on top of the naviframe, just above the current genlist. The > genlist, partially visible behind the pop-up, switches to the parent > genlist, one level higher in the tree. After the pop-up is popped from > the naviframe, the displayed genlist switches back to the current level. > The current genlist should not switch with the higher one since it was > never popped. > > Here is the relevant code : > > // new genlist creation: > // variable parent_layout points to the parent genlist > Evas_Object *layout = elm_layout_add(parent_layout); > evas_object_show(layout); > list = elm_genlist_add(layout); > > [...] > // variable nav points to the naviframe object > it = elm_naviframe_item_simple_push(nav, list); > > // pop-up creation, variable parent points to the genlist > > Evas_Object *popup = elm_layout_add(parent); > evas_object_show(popup); > Evas_Object *box = elm_box_add(popup); > // fill out box with popup content > [...] > evas_object_show(box); > it = elm_naviframe_item_simple_push(nav, popup); > > Elementary version : 1.7.7 > Architecture : ARM > > Any hints on what could cause this behaviour ? > Thanks, > Rémy Pienne
do you have a more... complete example we can test?i don't see why genlist should be pushing or popping anything just because popup is dismissed... -- ------------- Codito, ergo sum - "I code, therefore I am" -------------- The Rasterman (Carsten Haitzler) [email protected] ------------------------------------------------------------------------------ Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server from Actuate! Instantly Supercharge Your Business Reports and Dashboards with Interactivity, Sharing, Native Excel Exports, App Integration & more Get technology previously reserved for billion-dollar corporations, FREE http://pubads.g.doubleclick.net/gampad/clk?id=157005751&iu=/4140/ostg.clktrk _______________________________________________ enlightenment-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/enlightenment-users
