Skip to content

Commit

Permalink
fix spelling of frequence for input shaping
Browse files Browse the repository at this point in the history
  • Loading branch information
pellcorp committed Feb 3, 2024
1 parent 5c6ea26 commit 598d7bf
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 598d7bf

Please sign in to comment.