summaryrefslogtreecommitdiff
path: root/src/displayapp
diff options
context:
space:
mode:
authorJF002 <JF002@users.noreply.github.com>2021-04-09 20:44:02 +0200
committerGitHub <noreply@github.com>2021-04-09 20:44:02 +0200
commit9096d1db4c6be9f4a2cc8af99a994c219f25108c (patch)
tree4c182fcc206725ddce2d7620291d11a140408762 /src/displayapp
parent17a37acaa81278cc8c782d84d994d4ca938ef006 (diff)
parentf8b9a7c06081df68b34defd8df4a5ae39b390237 (diff)
Merge pull request #259 from JF002/fix-music-app2
Fix music app
Diffstat (limited to 'src/displayapp')
-rw-r--r--src/displayapp/screens/Music.cpp22
-rw-r--r--src/displayapp/screens/Music.h2
2 files changed, 14 insertions, 10 deletions
diff --git a/src/displayapp/screens/Music.cpp b/src/displayapp/screens/Music.cpp
index 85d35c96..373d084e 100644
--- a/src/displayapp/screens/Music.cpp
+++ b/src/displayapp/screens/Music.cpp
@@ -98,24 +98,28 @@ Music::Music(Pinetime::Applications::DisplayApp *app, Pinetime::Controllers::Mus
lv_label_set_text(txtTrackDuration, "--:--/--:--");
lv_label_set_align(txtTrackDuration, LV_ALIGN_IN_LEFT_MID);
lv_obj_set_width(txtTrackDuration, LV_HOR_RES);
-
+
constexpr uint8_t FONT_HEIGHT = 12;
constexpr uint8_t LINE_PAD = 15;
constexpr int8_t MIDDLE_OFFSET = -25;
txtArtist = lv_label_create(lv_scr_act(), nullptr);
- lv_label_set_long_mode(txtArtist, LV_LABEL_LONG_SROLL);
+ lv_label_set_long_mode(txtArtist, LV_LABEL_LONG_SROLL_CIRC);
+ lv_label_set_anim_speed(txtArtist, 1);
lv_obj_align(txtArtist, nullptr, LV_ALIGN_IN_LEFT_MID, 12, MIDDLE_OFFSET + 1 * FONT_HEIGHT);
- lv_label_set_text(txtArtist, "Artist Name");
lv_label_set_align(txtArtist, LV_ALIGN_IN_LEFT_MID);
- lv_obj_set_width(txtArtist, LV_HOR_RES);
-
+ lv_obj_set_width(txtArtist, LV_HOR_RES-12);
+ lv_label_set_text(txtArtist, "Artist Name");
+
+
txtTrack = lv_label_create(lv_scr_act(), nullptr);
- lv_label_set_long_mode(txtTrack, LV_LABEL_LONG_SROLL);
+ lv_label_set_long_mode(txtTrack, LV_LABEL_LONG_SROLL_CIRC);
+ lv_label_set_anim_speed(txtTrack, 1);
lv_obj_align(txtTrack, nullptr, LV_ALIGN_IN_LEFT_MID, 12, MIDDLE_OFFSET + 2 * FONT_HEIGHT + LINE_PAD);
- lv_label_set_text(txtTrack, "This is a very long getTrack name");
+
lv_label_set_align(txtTrack, LV_ALIGN_IN_LEFT_MID);
- lv_obj_set_width(txtTrack, LV_HOR_RES);
-
+ lv_obj_set_width(txtTrack, LV_HOR_RES-12);
+ lv_label_set_text(txtTrack, "This is a very long getTrack name");
+
/** Init animation */
imgDisc = lv_img_create(lv_scr_act(), nullptr);
lv_img_set_src_arr(imgDisc, &disc);
diff --git a/src/displayapp/screens/Music.h b/src/displayapp/screens/Music.h
index 096ab74d..55859811 100644
--- a/src/displayapp/screens/Music.h
+++ b/src/displayapp/screens/Music.h
@@ -76,7 +76,7 @@ namespace Pinetime {
/** Last length */
int lastLength;
/** Last time an animation update or timer was incremented */
- TickType_t lastIncrement;
+ TickType_t lastIncrement = 0;
bool playing;