Community
Participate
Working Groups
When JFace's DialogCellEditor is activated, copy to clipboard action copies the whole property (name + value) instead of copying just the value. Reason for this is that CellEditorActionHandler does not get the active cell editor because it uses Control.isFocusControl() which fails for the control hierarchy of DialogCellEditor. I workarounded this by overriding isFocusControl() in the cell editor and delegating the request to the "real" control, e.g. Text or Combo. But this is certainly not the best solution.
*** This bug has been marked as a duplicate of 128163 ***