Blue menu indicator

This commit is contained in:
ailurux
2023-07-08 12:59:17 +10:00
parent 3de310f6e4
commit 22221ae4f6
2 changed files with 2 additions and 0 deletions
+1
View File
@@ -43,6 +43,7 @@ Menu::Menu(std::vector<database::IndexInfo> indexes) : indexes_(indexes) {
for (database::IndexInfo& index : indexes_) {
lv_obj_t* item = lv_list_add_btn(list, NULL, index.name.c_str());
lv_obj_set_style_bg_color(item, lv_palette_main(LV_PALETTE_BLUE), LV_PART_MAIN | LV_STATE_FOCUSED);
lv_obj_add_event_cb(item, item_click_cb, LV_EVENT_CLICKED, &index);
lv_group_add_obj(group_, item);
}
+1
View File
@@ -165,6 +165,7 @@ auto TrackBrowser::AddResults(Position pos,
text = "[ no data ]";
}
lv_obj_t* item = lv_list_add_btn(list_, NULL, text->c_str());
lv_obj_set_style_bg_color(item, lv_palette_main(LV_PALETTE_BLUE), LV_PART_MAIN | LV_STATE_FOCUSED);
lv_obj_add_event_cb(item, item_click_cb, LV_EVENT_CLICKED, this);
lv_obj_add_event_cb(item, item_select_cb, LV_EVENT_FOCUSED, this);
lv_group_add_obj(group_, item);