Skip to content

Commit 444ef03

Browse files
committed
remove commented out lines
1 parent 1314fac commit 444ef03

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/displayapp/screens/FirmwareValidation.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,6 @@ FirmwareValidation::FirmwareValidation(Pinetime::Controllers::FirmwareValidator&
4444
lv_label_set_align(labelIsValidated, LV_LABEL_ALIGN_CENTER);
4545
lv_obj_set_auto_realign(labelIsValidated, true);
4646
lv_label_set_recolor(labelIsValidated, true);
47-
// lv_label_set_long_mode(labelIsValidated, LV_LABEL_LONG_BREAK);
48-
// lv_obj_set_width(labelIsValidated, 240);
4947

5048
if (validator.IsValidated()) {
5149
lv_label_set_text_static(labelIsValidated, "This firmware has\nbeen #00ff00 validated#");
@@ -59,7 +57,6 @@ FirmwareValidation::FirmwareValidation(Pinetime::Controllers::FirmwareValidator&
5957
lv_obj_align(buttonValidate, nullptr, LV_ALIGN_IN_BOTTOM_LEFT, 0, 0);
6058
lv_obj_set_event_cb(buttonValidate, ButtonEventHandler);
6159
lv_obj_set_style_local_bg_color(buttonValidate, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, Colors::highlight);
62-
// lv_obj_set_style_local_radius(buttonValidate, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, LV_RADIUS_CIRCLE);
6360

6461
labelButtonValidate = lv_label_create(buttonValidate, nullptr);
6562
lv_label_set_text_static(labelButtonValidate, "Validate");
@@ -70,7 +67,6 @@ FirmwareValidation::FirmwareValidation(Pinetime::Controllers::FirmwareValidator&
7067
lv_obj_align(buttonReset, nullptr, LV_ALIGN_IN_BOTTOM_RIGHT, 0, 0);
7168
lv_obj_set_style_local_bg_color(buttonReset, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_RED);
7269
lv_obj_set_event_cb(buttonReset, ButtonEventHandler);
73-
// lv_obj_set_style_local_radius(buttonReset, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, LV_RADIUS_CIRCLE);
7470

7571
labelButtonReset = lv_label_create(buttonReset, nullptr);
7672
lv_label_set_text_static(labelButtonReset, "Rollback");

0 commit comments

Comments
 (0)