Skip to content
Snippets Groups Projects
Commit e78713ec authored by Benoît Harrault's avatar Benoît Harrault
Browse files

Fix forbid change value of fixed initial cell

parent a63d3df1
Branches
Tags
1 merge request!28Resolve "Forbid delete value in fixed cell"
Pipeline #1679 passed
org.gradle.jvmargs=-Xmx1536M
android.useAndroidX=true
android.enableJetifier=true
app.versionName=0.0.25
app.versionCode=25
app.versionName=0.0.26
app.versionCode=26
Fix forbid change value of fixed initial cell
Correction sur l'interdiction de modification de la valeur d'une cellule initiale
......@@ -124,7 +124,9 @@ class Data extends ChangeNotifier {
}
updateCellValue(int col, int row, int value) {
_cells[row][col].value = value;
if (!_cells[row][col].isFixed) {
_cells[row][col].value = value;
}
notifyListeners();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment