summaryrefslogtreecommitdiff
path: root/src/displayapp/screens/CheckboxList.cpp
diff options
context:
space:
mode:
authorJean-François Milants <jf@codingfield.com>2022-09-27 21:10:01 +0200
committerJean-François Milants <jf@codingfield.com>2022-09-27 21:10:01 +0200
commit58586d0ad1ebeefd7a6f269089f467ccba2f468c (patch)
tree4b65ed9e8fe42336f4a49094a2e4e0cafbfcef97 /src/displayapp/screens/CheckboxList.cpp
parent2400110900fbc69007f892295e734d083739bd0d (diff)
Fix formatting in CheckBoxList.cpp.
Diffstat (limited to 'src/displayapp/screens/CheckboxList.cpp')
-rw-r--r--src/displayapp/screens/CheckboxList.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/displayapp/screens/CheckboxList.cpp b/src/displayapp/screens/CheckboxList.cpp
index 7c7e8565..b89add43 100644
--- a/src/displayapp/screens/CheckboxList.cpp
+++ b/src/displayapp/screens/CheckboxList.cpp
@@ -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);
}