Skip to content

Commit

Permalink
Fix initial roller function setting item
Browse files Browse the repository at this point in the history
  • Loading branch information
Master92 committed Jan 6, 2024
1 parent 7c2a143 commit 33ed80e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ui/page_input.c
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ static lv_obj_t *page_input_create(lv_obj_t *parent, panel_arr_t *arr) {

create_label_item(content, "Roller:", 1, ROLLER, 1);
pageItems[ROLLER] = create_dropdown_item(content, rollerOptionsStr, 2, ROLLER, 320, row_dsc[ROLLER], 2, 10, LV_GRID_ALIGN_START, &lv_font_montserrat_26);
lv_dropdown_set_selected(pageItems[ROLLER], rollerDefaultOption);
lv_dropdown_set_selected(pageItems[ROLLER], g_setting.inputs.roller);

create_label_item(content, "Left short:", 1, LEFT_SHORT, 1);
pageItems[LEFT_SHORT] = create_dropdown_item(content, btnOptionsStr, 2, LEFT_SHORT, 320, row_dsc[LEFT_SHORT], 2, 10, LV_GRID_ALIGN_START, &lv_font_montserrat_26);
Expand Down

0 comments on commit 33ed80e

Please sign in to comment.