@Override
public void actionPerformed(ActionEvent e) {
List<Bookmark> sels = bookmarks.getSelectedValuesList();
if (sels == null || sels.size() != 1)
return;
Bookmark b = sels.get(0);
Object value =
JOptionPane.showInputDialog(
Main.parent,tr("Please enter a name for the bookmarked download area."),
tr("Name of location"),
JOptionPane.QUESTION_MESSAGE,
null,
null,
b.getName()
);
if (value != null) {
b.setName(value.toString());
bookmarks.save();
bookmarks.repaint();
}
}