/**
* Allow the user to edit the individual insets' values.
*/
private void editInsets() {
InsetsChooserPanel panel = new InsetsChooserPanel(this.plotInsets);
int result = JOptionPane.showConfirmDialog(this, panel,
localizationResources.getString("Edit_Insets"),
JOptionPane.OK_CANCEL_OPTION,
JOptionPane.PLAIN_MESSAGE);
if (result == JOptionPane.OK_OPTION) {
this.plotInsets = panel.getInsets();
this.insetsTextField.setInsets(this.plotInsets);
}
}