1
0
mirror of https://github.com/arduino/Arduino.git synced 2024-12-01 12:24:14 +01:00

InstallerJDialog: ignoring key events when installation is ongoing

This commit is contained in:
Federico Fissore 2015-03-23 14:47:41 +01:00
parent a19cdf1492
commit 8bdd2c9402

View File

@ -140,6 +140,10 @@ public abstract class InstallerJDialog<T> extends JDialog {
return;
}
if (!contribTable.isEnabled()) {
return;
}
contribTable.editCellAt(contribTable.getSelectedRow(), contribTable.getSelectedColumn());
}
});