1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-02-12 06:54:24 +01:00

Fixed wrong managedByIndex check

This commit is contained in:
Cristian Maglie 2020-07-15 17:22:13 +02:00
parent 64c53afa20
commit f0d30575dd

View File

@ -260,7 +260,7 @@ public class LibraryManagerUI extends InstallerJDialog<ContributedLibrary> {
}
public void onRemovePressed(final ContributedLibraryRelease lib) {
boolean managedByIndex = BaseNoGui.librariesIndexer.getIndex().getLibraries().contains(lib);
boolean managedByIndex = BaseNoGui.librariesIndexer.getIndex().getLibraries().contains(lib.getLibrary());
if (!managedByIndex) {
int chosenOption = JOptionPane.showConfirmDialog(this, tr("This library is not listed on Library Manager. You won't be able to reinstall it from here.\nAre you sure you want to delete it?"), tr("Please confirm library deletion"), JOptionPane.YES_NO_OPTION, JOptionPane.QUESTION_MESSAGE);