Update src/main/java/dev/sillyangel/calc/Calculator.java
Some checks failed
Build the Jar / build (push) Failing after 6s

This commit is contained in:
2025-12-17 08:59:30 -06:00
parent cc2a625fc1
commit a52fe8dc78

View File

@@ -632,6 +632,10 @@ public class Calculator extends JFrame implements KeyListener {
resultVisible = true;
display.setText(""+result);
}
private void changeThemes(String theme) {
// something like
// https://github.com/DJ-Raven/raven-java-swing-tutorial-project/blob/main/dark-light-switch/src/raven/themes/Test.java#L106
}
// Implement the keyPressed method
@Override