commit 5db212ab9c290771adc157b2d29a7bd294bd59c1
parent e4cff15aad5dd6d4d3906dddd65397a8cee569f8
Author: Manuel Geissbühler <manuel@debian>
Date: Fri, 27 Dec 2024 22:31:05 +0100
debugging
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/gui/screen.hpp b/src/gui/screen.hpp
@@ -93,7 +93,7 @@ class Screen {
button = lv_button_create(buttonsContainer);
buttons.push_back(button);
label = lv_label_create(button);
- lv_label_set_text_fmt(button, "button %d", i);
+ lv_label_set_text_fmt(label, "button %d", i);
lv_obj_center(button);
}