From a600ef7fa09678298a7589faf2ccf37cb505cb86 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Jo=C5=84ski?= Date: Fri, 14 Jan 2022 14:24:11 +0100 Subject: [PATCH] [BH-1243] Fix extreme values arrows on snooze interval Fix extreme values arrows on snooze interval --- .../models/alarm_settings/SnoozeListItemProvider.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/products/BellHybrid/apps/application-bell-settings/models/alarm_settings/SnoozeListItemProvider.cpp b/products/BellHybrid/apps/application-bell-settings/models/alarm_settings/SnoozeListItemProvider.cpp index 4a859d2fe9e40b4196b682cdd5c2006cba2b37bd..f1bd9c3aa385d8dddf1858766c92868ad94506c2 100644 --- a/products/BellHybrid/apps/application-bell-settings/models/alarm_settings/SnoozeListItemProvider.cpp +++ b/products/BellHybrid/apps/application-bell-settings/models/alarm_settings/SnoozeListItemProvider.cpp @@ -103,8 +103,8 @@ namespace app::bell_settings internalData.emplace_back(chimeInterval); - chimeLength->onProceed = [chimeInterval, chimeLength, this]() { - if (chimeInterval != nullptr) { + chimeInterval->onEnter = [chimeInterval, chimeLength, this]() { + if (chimeLength != nullptr) { const auto currentChimeLength = chimeLength->getCurrentValue(); const auto currentChimeInterval = chimeInterval->getCurrentValue(); const auto calculatedRange = transformChimeIntervalsRange(currentChimeLength);