Add @amaanbuilds animation attribution to Bluetooth screen

This commit is contained in:
Hermann Björgvin Haraldsson
2026-05-11 00:16:56 +00:00
parent 36db239569
commit 68a31b189b
+7 -1
View File
@@ -545,7 +545,13 @@ static void init_bluetooth_screen(lv_obj_t* scr) {
lv_label_set_text(lbl_credit, "Built by @hermannbjorgvin"); lv_label_set_text(lbl_credit, "Built by @hermannbjorgvin");
lv_obj_set_style_text_font(lbl_credit, &font_styrene_24, 0); lv_obj_set_style_text_font(lbl_credit, &font_styrene_24, 0);
lv_obj_set_style_text_color(lbl_credit, COL_DIM, 0); lv_obj_set_style_text_color(lbl_credit, COL_DIM, 0);
lv_obj_align(lbl_credit, LV_ALIGN_BOTTOM_MID, 0, -24); lv_obj_align(lbl_credit, LV_ALIGN_BOTTOM_MID, 0, -46);
lv_obj_t* lbl_credit2 = lv_label_create(ble_container);
lv_label_set_text(lbl_credit2, "Clawd animations by @amaanbuilds");
lv_obj_set_style_text_font(lbl_credit2, &font_styrene_20, 0);
lv_obj_set_style_text_color(lbl_credit2, COL_DIM, 0);
lv_obj_align(lbl_credit2, LV_ALIGN_BOTTOM_MID, 0, -20);
// Start hidden // Start hidden
lv_obj_add_flag(ble_container, LV_OBJ_FLAG_HIDDEN); lv_obj_add_flag(ble_container, LV_OBJ_FLAG_HIDDEN);