From c89fe21f5d455d5cc8ed78ade206eee627884542 Mon Sep 17 00:00:00 2001 From: redgl0w <43498612+RedGl0w@users.noreply.github.com> Date: Fri, 10 Jan 2020 20:05:00 +0100 Subject: [PATCH 1/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 66a684c5a..fdf21fb30 100644 --- a/README.md +++ b/README.md @@ -165,4 +165,4 @@ We welcome contributions. For smaller changes just open a pull request straight ## License -NumWorks is a registered trademark. Omega is not affiliated with Numworks. NumWorks Epsilon is released under a [CC BY-NC-SA License](https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode). \ No newline at end of file +NumWorks is a registered trademark. Omega is not affiliated with Numworks. NumWorks Epsilon is released under a [CC BY-NC-SA License](https://creativecommons.org/licenses/by-nc-sa/4.0/legalcode). From 4824ad61fc5bce096d5829a70891cb3d5d5dce3e Mon Sep 17 00:00:00 2001 From: redgl0w <43498612+RedGl0w@users.noreply.github.com> Date: Fri, 10 Jan 2020 20:06:05 +0100 Subject: [PATCH 2/3] Update exam_mode_controller.cpp --- apps/settings/sub_menu/exam_mode_controller.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/settings/sub_menu/exam_mode_controller.cpp b/apps/settings/sub_menu/exam_mode_controller.cpp index 0909bc6f6..3e94bd868 100644 --- a/apps/settings/sub_menu/exam_mode_controller.cpp +++ b/apps/settings/sub_menu/exam_mode_controller.cpp @@ -68,6 +68,9 @@ int ExamModeController::reusableCellCount(int type) { } void ExamModeController::willDisplayCellForIndex(HighlightCell * cell, int index) { + if(index == 0){ + m_examModeCell.setHighlighted(false); + } Preferences * preferences = Preferences::sharedPreferences(); GenericSubController::willDisplayCellForIndex(cell, index); I18n::Message thisLabel = m_messageTreeModel->children(index)->label(); From 9cb4758bb67924f1cd74a749c1fefde9e0a62a20 Mon Sep 17 00:00:00 2001 From: redgl0w <43498612+RedGl0w@users.noreply.github.com> Date: Fri, 10 Jan 2020 20:06:24 +0100 Subject: [PATCH 3/3] Update README.md