fix merge
All checks were successful
Linux arm64 / Build (push) Successful in 42s

This commit is contained in:
2025-01-30 16:37:10 +01:00
parent ec07d88577
commit 73f572ee18

View File

@@ -75,13 +75,11 @@ public class SudokuRenderer {
ImGui.closeCurrentPopup();
}
} else {
if (ImGui.button(Integer.toString(i + 1), cellSize)) {
if (ImGui.button(Options.Symboles.getSymbols().get(i), cellSize)) {
currentCell.trySetValue(i);
if (this.doku.getDoku().isSolved())
this.onResolve.emit();
ImGui.closeCurrentPopup();
}
if (ImGui.button(Options.Symboles.getSymbols().get(i), cellSize)) {
currentCell.trySetValue(i);
if (this.doku.getDoku().isSolved())
this.onResolve.emit();
ImGui.closeCurrentPopup();
}
}
}