From: DUBEYPRINCE KUMAR <prince.dubey@samsung.com>

Subject: [E-devel] [PATCH][ELEMENTARY][BUG Fix] Current Reordering
item is not resizing on genlist resize (e.g On roation)

Please review the attached patch created to fix the current reordering
item
resizing issue.
 
 [ISSUE] Current genlist reordering item is not resizing on genlist
resize
(e.g. On rotation).
 
Change Description:
 
In _calc_job call back, the width of reordering item is corrected.
   


SVN revision: 77992
This commit is contained in:
DUBEYPRINCE KUMAR 2012-10-15 09:10:05 +00:00 committed by Carsten Haitzler
parent 39eb187493
commit 1b2a42c819
3 changed files with 11 additions and 0 deletions

View File

@ -614,3 +614,7 @@
2012-10-15 Shinwoo Kim (kimcinoo)
* Add access features to toolbar items
2012-10-15 Prince Dubey Kumar <prince.dubey@samsung.com>
* Fix genlist reorder mode item not being resized on genlist resize.

View File

@ -42,6 +42,7 @@ Fixes:
* Fix possible invalid memory access in elm_access.
* Fix diskselector bug with more than 4 items.
* Fix conform widget to be part of focus chain.
* Fix genlist reorder mode item not being resized on genlist resize.
Removals:

View File

@ -670,6 +670,12 @@ _calc_job(void *data)
sd->minh = minh;
evas_object_smart_callback_call(sd->pan_obj, "changed", NULL);
elm_layout_sizing_eval(ELM_WIDGET_DATA(sd)->obj);
if (sd->reorder_it)
{
Elm_Gen_Item *it;
it = sd->reorder_it;
it->item->w = minw;
}
if ((sd->anchor_item) && (sd->anchor_item->item->block)
&& (!sd->auto_scroll_enabled))
{