Skip to content

Commit

Permalink
Merge pull request #34 from pellcorp/jp_spel_fix
Browse files Browse the repository at this point in the history
fix spelling of frequence for input shaping
  • Loading branch information
ballaswag authored Feb 3, 2024
2 parents 5c6ea26 + 598d7bf commit e755e58
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/inputshaper_panel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ InputShaperPanel::InputShaperPanel(KWebSocketClient &c, std::mutex &l)
lv_obj_set_style_pad_all(cont, 0, 0);

lv_obj_t *graph_label = lv_label_create(xgraph_cont);
lv_label_set_text(graph_label, "X Frequence Response");
lv_label_set_text(graph_label, "X Frequency Response");
lv_obj_align(graph_label, LV_ALIGN_BOTTOM_MID, 0, 0);

lv_obj_set_style_pad_all(xgraph_cont, 0, 0);
Expand All @@ -94,7 +94,7 @@ InputShaperPanel::InputShaperPanel(KWebSocketClient &c, std::mutex &l)
LV_EVENT_CLICKED, this);

graph_label = lv_label_create(ygraph_cont);
lv_label_set_text(graph_label, "Y Frequence Response");
lv_label_set_text(graph_label, "Y Frequency Response");
lv_obj_align(graph_label, LV_ALIGN_BOTTOM_MID, 0, 0);

lv_obj_set_style_pad_all(ygraph_cont, 0, 0);
Expand Down

0 comments on commit e755e58

Please sign in to comment.