Fixed variable name

This commit is contained in:
jspkay 2022-11-13 20:22:17 +01:00
parent 988a91ef51
commit d084d5c54e
2 changed files with 2 additions and 2 deletions

View file

@ -80,7 +80,7 @@ void Notifications::Refresh() {
lv_line_set_points(timeoutLine, timeoutLinePoints, 2);
}
if(!this->isTitleScrolling && tick >= timeoutTickCountStart + timeoutStartScrolling){
if(!this->isTitleScrolling && tick >= timeoutTickCountStart + timeoutStartTitleScrolling){
currentItem->StartTitleScroll();
this->isTitleScrolling = true;
}

View file

@ -47,7 +47,7 @@ namespace Pinetime {
return running;
}
void OnCallButtonEvent(lv_obj_t*, lv_event_t event);
void StartTitleScroll();
void StartTitleScroll();
private:
lv_obj_t* container;