SVN commit 1059543 by hedlund: Prevent freezing in multiple choice when trying to repeat errors. M +4 -1 kwqquizmodel.cpp --- trunk/KDE/kdeedu/kwordquiz/src/kwqquizmodel.cpp #1059542:1059543 @@ -85,7 +85,10 @@ bool KWQQuizModel::hasErrors() { - return !m_errorList.isEmpty(); + if (m_quizType == Prefs::EnumStartSession::MultipleChoice) + return m_errorList.count() > 2; //this is a hack until better multiple choice is written + else + return !m_errorList.isEmpty(); } bool KWQQuizModel::init()