InfiniTime.git

commit a7c86786c3a56877a0343c58bc706acf131af30b

Author: ialokim <ialokim@mailbox.org>

Apply suggestions from code review

Co-authored-by: NeroBurner <pyro4hell@gmail.com>

 src/displayapp/screens/WatchFacePineTimeStyle.cpp | 3 +--


diff --git a/src/displayapp/screens/WatchFacePineTimeStyle.cpp b/src/displayapp/screens/WatchFacePineTimeStyle.cpp
index 53f8a1c2839b4f69cfa49f29d02148c873db2639..6aaeeb96bb882ecf2c5513c77e563dc5285b296d 100644
--- a/src/displayapp/screens/WatchFacePineTimeStyle.cpp
+++ b/src/displayapp/screens/WatchFacePineTimeStyle.cpp
@@ -192,7 +192,7 @@   lv_obj_set_style_local_pad_inner(stepGauge, LV_GAUGE_PART_NEEDLE, LV_STATE_DEFAULT, 4);
 
   // Display seconds
   timeDD3 = lv_label_create(lv_scr_act(), nullptr);
-  lv_obj_set_style_local_text_color(timeDD3, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x000000));
+  lv_obj_set_style_local_text_color(timeDD3, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_BLACK);
   lv_label_set_text_static(timeDD3, ":00");
   lv_obj_align(timeDD3, sidebar, LV_ALIGN_IN_BOTTOM_MID, 0, 0);
 
@@ -423,7 +423,6 @@     }
 
     if (displayedSecond != second) {
       displayedSecond = second;
-
       lv_label_set_text_fmt(timeDD3, ":%02d", second);
     }