Réorganisation du dossier

This commit is contained in:
2026-03-29 18:18:28 +02:00
parent 8283bc0475
commit 1692cd0ba3
5 changed files with 168 additions and 9 deletions
+2 -3
View File
@@ -24,7 +24,7 @@ public class VueGrille extends View {
// Données nécessaires au dessin
private int[][] grille = new int[NB_LIGNES][NB_COLONNES];
private int[][] grille = new int[NB_LIGNES][NB_COLONNES];
private boolean[][] verrous = new boolean[NB_LIGNES][NB_COLONNES];
private Boolean animEstLigne = null;
@@ -205,8 +205,7 @@ public class VueGrille extends View {
canvas.drawRoundRect(x1, y1, x2, y2, 20, 20, pinceauCase);
if (animEstLigne != null) {
if ((animEstLigne && ligne == animIndex)
|| (!animEstLigne && colonne == animIndex)) {
if ((animEstLigne && ligne == animIndex) || (!animEstLigne && colonne == animIndex)) {
canvas.drawRoundRect(x1, y1, x2, y2, 20, 20, pinceauSelection);
}
}