diff options
| author | Riku Isokoski <riksu9000@gmail.com> | 2022-04-18 16:57:40 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-04-18 16:57:40 (GMT) |
| commit | ed91b5a9981898078ad8e4cf105b5d52c7b63dfe (patch) | |
| tree | a1011cafa0bd0b538119331fc7e092b4d716ac03 /src/displayapp/screens/Twos.cpp | |
| parent | ff73f67d6f0ac6dde480aa82b0c225377ce60d49 (diff) | |
| parent | 68a7016080115dd7a7eae1041eb2a75457aae0cd (diff) | |
Merge pull request #1044 from Riksu9000/replace-lv_set_text
Replace lv_label_set_text where possible
Diffstat (limited to 'src/displayapp/screens/Twos.cpp')
| -rw-r--r-- | src/displayapp/screens/Twos.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/displayapp/screens/Twos.cpp b/src/displayapp/screens/Twos.cpp index 6d67585..ca9295d 100644 --- a/src/displayapp/screens/Twos.cpp +++ b/src/displayapp/screens/Twos.cpp @@ -90,7 +90,7 @@ Twos::Twos(Pinetime::Applications::DisplayApp* app) : Screen(app) { lv_label_set_long_mode(backgroundLabel, LV_LABEL_LONG_CROP); lv_obj_set_size(backgroundLabel, 240, 240); lv_obj_set_pos(backgroundLabel, 0, 0); - lv_label_set_text(backgroundLabel, ""); + lv_label_set_text_static(backgroundLabel, ""); } Twos::~Twos() { |
