Skip to content

Commit

Permalink
Fix formatting in CheckBoxList.cpp.
Browse files Browse the repository at this point in the history
  • Loading branch information
JF002 committed Sep 27, 2022
1 parent 2400110 commit 58586d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/displayapp/screens/CheckboxList.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ void CheckboxList::UpdateSelected(lv_obj_t* object, lv_event_t event) {
if (strcmp(options[i], "")) {
if (object == cbOption[i]) {
lv_checkbox_set_checked(cbOption[i], true);
(settingsController.*SetOptionIndex)(MaxItems* screenID + i);
(settingsController.*SetOptionIndex)(MaxItems * screenID + i);
} else {
lv_checkbox_set_checked(cbOption[i], false);
}
Expand Down

0 comments on commit 58586d0

Please sign in to comment.