Updated Six Meanings Controller
Six Meanings Controller is now consistent with other Questions in displaying correct and total answers from the Assessment Generator
This commit is contained in:
parent
49a8d54bc5
commit
20d6e5e874
1 changed files with 2 additions and 2 deletions
|
@ -173,9 +173,9 @@ public class SixMeaningsController extends SharedCodeController {
|
|||
|
||||
setWords(allQuestions,orderList);
|
||||
|
||||
correctAnswer.setText(Integer.toString(Question.correctAnswers));
|
||||
correctAnswer.setText("Correct answers:" +Integer.toString(AssessmentGenerator.getTotalCorrectAnswers()));
|
||||
|
||||
wrongAnswer.setText(Integer.toString(Question.wrongAnswers));
|
||||
wrongAnswer.setText("Total answers:" +Integer.toString(AssessmentGenerator.getTotalAnswers()));
|
||||
|
||||
}
|
||||
|
||||
|
|
Reference in a new issue