[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[news.eclipse.tools] BUG: PropertySheetViewer.setInput(...)

At the top of the method there is:

	// deactivate our cell editor
	deactivateCellEditor();

It needs to have:

	// deactivate our cell editor
	applyEditorValue();
	deactivateCellEditor();

This is because if you click off of the propertysheet onto something
else, this method is fired. But if you had made changes to an entry in
the sheet, the changes are lost because the apply wasn't done. If you
look at handleSelect method, it does the applyEditorValue and that works
correctly if you click on another entry in the same sheet.

Thanks,
Rich Kulp