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:
law39 2020-04-30 14:38:36 +01:00
parent 49a8d54bc5
commit 20d6e5e874

View file

@ -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()));
}