From 598d7bf98f8f9c7f9f1ba080176e3660d471967b Mon Sep 17 00:00:00 2001 From: Jason Pell Date: Sat, 3 Feb 2024 18:49:47 +1100 Subject: [PATCH] fix spelling of frequence for input shaping --- src/inputshaper_panel.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/inputshaper_panel.cpp b/src/inputshaper_panel.cpp index 05edd3e..fd9bbc9 100644 --- a/src/inputshaper_panel.cpp +++ b/src/inputshaper_panel.cpp @@ -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); @@ -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);