diff options
| author | Jean-François Milants <jf@codingfield.com> | 2021-04-04 15:19:41 (GMT) |
|---|---|---|
| committer | Jean-François Milants <jf@codingfield.com> | 2021-04-04 15:19:41 (GMT) |
| commit | f8b9a7c06081df68b34defd8df4a5ae39b390237 (patch) | |
| tree | 16a2719a570c6e92eb69e6dd075ab479d1c7d47d /src/components/ble/MusicService.cpp | |
| parent | 04fc33e2d479161ec261f932b908dffbd73e227f (diff) | |
Fix music app :
- Enable LVGL animation (and disable groups, which were not used), and set the speed.
- Fix disc animation and progress display by initializing lastIncrement at 0 (a random value will be used otherwise, in release build)
Diffstat (limited to 'src/components/ble/MusicService.cpp')
| -rw-r--r-- | src/components/ble/MusicService.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/ble/MusicService.cpp b/src/components/ble/MusicService.cpp index bd6e27f..b02e743 100644 --- a/src/components/ble/MusicService.cpp +++ b/src/components/ble/MusicService.cpp @@ -164,7 +164,7 @@ Pinetime::Controllers::MusicService::MusicService(Pinetime::System::SystemTask & artistName = "Waiting for"; albumName = ""; - trackName = "track information..."; + trackName = "track information.."; playing = false; repeat = false; shuffle = false; |
