From 58586d0ad1ebeefd7a6f269089f467ccba2f468c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Fran=C3=A7ois=20Milants?= Date: Tue, 27 Sep 2022 21:10:01 +0200 Subject: [PATCH] Fix formatting in CheckBoxList.cpp. --- src/displayapp/screens/CheckboxList.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }