diff --git a/apps/settings/cell_with_separator.cpp b/apps/settings/cell_with_separator.cpp index 7f421ce28..8e8bb17b8 100644 --- a/apps/settings/cell_with_separator.cpp +++ b/apps/settings/cell_with_separator.cpp @@ -8,7 +8,7 @@ void CellWithSeparator::setHighlighted(bool highlight) { } void CellWithSeparator::drawRect(KDContext * ctx, KDRect rect) const { - ctx->fillRect(KDRect(0, Metric::CellSeparatorThickness, bounds().width(), k_margin), Palette::WallScreen); + ctx->fillRect(KDRect(0, Metric::CellSeparatorThickness, bounds().width(), k_margin), Palette::BackgroundApps); } int CellWithSeparator::numberOfSubviews() const { diff --git a/apps/settings/sub_menu/exam_mode_controller.cpp b/apps/settings/sub_menu/exam_mode_controller.cpp index d84d480b2..c60fbbd89 100644 --- a/apps/settings/sub_menu/exam_mode_controller.cpp +++ b/apps/settings/sub_menu/exam_mode_controller.cpp @@ -27,7 +27,7 @@ ExamModeController::ExamModeController(Responder * parentResponder) : } bool ExamModeController::handleEvent(Ion::Events::Event event) { - if (event == Ion::Events::OK || event == Ion::Events::EXE) { + if (event == Ion::Events::OK || event == Ion::Events::EXE || event == Ion::Events::Right) { if (m_messageTreeModel->children(selectedRow())->label() == I18n::Message::LEDColor) { (&m_ledController)->setMessageTreeModel(m_messageTreeModel->children(selectedRow())); StackViewController * stack = stackController();