Translation Controller updated
Translation Controller now uses terminology consistent with other Questions by displaying Correct and total answers, rather than correct and wrong answers.
This commit is contained in:
parent
1fc178be0c
commit
f1d7cd1ea1
1 changed files with 2 additions and 2 deletions
|
@ -69,8 +69,8 @@ public class TranslationController extends SharedCodeController{
|
|||
|
||||
submitButton.setImage(new Image ("file:src/main/resources/assets/icons/black_icons/50px/right-50.png"));
|
||||
|
||||
correctGuesses.setText("Correct Guesses: " + Question.correctAnswers);
|
||||
incorrectGuesses.setText("Incorrect Guesses: " + Question.wrongAnswers);
|
||||
correctGuesses.setText("Correct answers: " + AssessmentGenerator.getTotalCorrectAnswers());
|
||||
incorrectGuesses.setText("Total answers: " + AssessmentGenerator.getTotalAnswers());
|
||||
|
||||
|
||||
|
||||
|
|
Reference in a new issue