1
0
mirror of https://github.com/DanilaFe/abacus synced 2026-01-28 01:25:19 +00:00

Allow all standard functions to end early

This commit is contained in:
Riley Jones
2017-08-04 13:45:29 -07:00
parent eff7be0204
commit 4369eba107
2 changed files with 36 additions and 11 deletions

View File

@@ -161,7 +161,7 @@ public class AbacusController {
private void stopCalculation(){
calcThread.interrupt();
calculating = false;
Platform.runLater(() ->inputButton.setDisable(false));
//Platform.runLater(() ->inputButton.setDisable(false));
}
}