1
0
mirror of https://github.com/DanilaFe/abacus synced 2026-01-15 11:25:20 +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 6c02d3833d
commit f3758c83a9
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));
}
}