Skip to content

Commit 8bdd2c9

Browse files
author
Federico Fissore
committed
InstallerJDialog: ignoring key events when installation is ongoing
1 parent a19cdf1 commit 8bdd2c9

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

app/src/cc/arduino/contributions/ui/InstallerJDialog.java

+4
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,10 @@ public void keyReleased(KeyEvent keyEvent) {
140140
return;
141141
}
142142

143+
if (!contribTable.isEnabled()) {
144+
return;
145+
}
146+
143147
contribTable.editCellAt(contribTable.getSelectedRow(), contribTable.getSelectedColumn());
144148
}
145149
});

0 commit comments

Comments
 (0)