diff options
| author | Michele Bini <michele.bini@gmail.com> | 2022-05-12 22:06:46 (GMT) |
|---|---|---|
| committer | Michele Bini <michele.bini@gmail.com> | 2022-05-12 22:06:46 (GMT) |
| commit | 90bc1d4509ce7c832b36bfca5da76157b97e33d3 (patch) | |
| tree | ac34d13cc476b1f8913b6a5c9ac0d83f925bd3c8 /src | |
| parent | 6aab6ea69cc20bdbdb1f5096e2647cbed348e916 (diff) | |
Fix previous commit
Diffstat (limited to 'src')
| -rw-r--r-- | src/displayapp/screens/WatchFaceTerminal.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/displayapp/screens/WatchFaceTerminal.cpp b/src/displayapp/screens/WatchFaceTerminal.cpp index b1e3350..57395b7 100644 --- a/src/displayapp/screens/WatchFaceTerminal.cpp +++ b/src/displayapp/screens/WatchFaceTerminal.cpp @@ -39,7 +39,7 @@ WatchFaceTerminal::WatchFaceTerminal(DisplayApp* app, lv_label_set_text_static(backgroundLabel, ""); uint16_t y = -100; - for (auto line : lines) { + for (auto& line : lines) { line = lv_label_create(lv_scr_act(), nullptr); lv_obj_align(line, nullptr, LV_ALIGN_IN_LEFT_MID, 0, y); y += 20; |
