Table: fixed bug
authorjihye424.kim <jihye424.kim@samsung.com>
Wed, 21 Oct 2015 03:55:20 +0000 (12:55 +0900)
committerjihye424.kim <jihye424.kim@samsung.com>
Wed, 21 Oct 2015 03:55:20 +0000 (12:55 +0900)
commit86ae1e14d3730b6171c8dde18ba27ea027d3720b
tree1dc8e14de9b6de33a2b546f56c2e821865195101
parent3b9e2742a0fee4a038a59b7d0b1b2cfeb60c1a95
Table: fixed bug

- fixed insert error
-- error: if new table item has same index as selected item index,
throw index out of bounds exception when copy selection array
-- cause: table item set item index itself before creaetd by table
so items had same index are two...so throw exception
-- solution: table item does not set index itself, only table set item index

- fixed select table item error
-- error: when select table item..you can see parts that not drawing
-- cause: table item and table have different width
if table width has been changed, table item width has not changed..
-- solution: when table width has been changed, also change table item width

Change-Id: I2e30e145bee5ec0bb2844da91c993fdaee94cb90
Signed-off-by: jihye424.kim <jihye424.kim@samsung.com>
src/org/tizen/emulator/manager/ui/table/Table.java
src/org/tizen/emulator/manager/ui/table/TableItem.java