Bug #44
closedEditing name in ActorDetailsPanel may not be reflected when attempting to edit table
0%
Description
Start editing the name in the actor details panel, then start editing the same name in the table.
If you are editing the name in the actorDetailsPanel, then switch to the table, the value should be committed, and the value in the table should match the edited name.
If you set setClickCountToStart for InitTableTextCellEditor to 2, this problem does not happen, because the first click looses the focus on the name, and the table is updated. What seems to happen when the clicks is 1 is that the cell enters edit mode before the name text field looses focus, so it gets the original value, then the text field looses focus and the back end actor is updated, but the cell is in edit mode so it still has the old value. If you press 'Esc' then it will cancel and you will see the new value, but if you press 'Enter' or move to another cell, then the old value will get committed, and the change made in the actorDetailsPanel will be overwritten.
Possible solution: change setClickCountToStart to 2.