1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-25 06:22:11 +03: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());
}
});