You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
mainViewModel.AppendMessage($"Row {cellIndex.RowIndex+1} Column {cellIndex.ColumnIndex+1} Value {enteredValue} [Wrong value entered by user]");
104
+
mainViewModel.AppendMessage($"Row {_activeCell.Cell.RowIndex+1} Column {_activeCell.Cell.ColumnIndex+1} Value {enteredValue} [Wrong value entered by user]");
106
105
return;
107
106
}
108
107
109
-
varsolution=newSingleStepSolution(cellIndex.RowIndex,cellIndex.ColumnIndex,enteredValue,"Entered by user");
108
+
varsolution=newSingleStepSolution(_activeCell.Cell.RowIndex,_activeCell.Cell.ColumnIndex,enteredValue,"Entered by user");
110
109
SudokuPuzzle.ApplySingleStepSolution(solution);
111
110
_activeCell.NotifyCellValueChanged();
112
111
SetSelection(_activeCell);
@@ -228,13 +227,11 @@ private void ChangeActiveCell(int rowOffset, int columnOffset)
0 commit comments