// colorContent.add(Box.createHorizontalStrut(8));
colorContent.add(dropperButton);
}
private void setColor(Point2D p) {
ColorPickerDropperOperation op = (ColorPickerDropperOperation) getOperation();
Map<String, Double> map = op.setColor(p);
updateColor(map);
if (! undoSupport.isRestoring()) {
undoSupport.postEdit(LOCALE.get("DropperEditName"));
}
}