Skip to content

Commit 42eeb7f

Browse files
author
Joel Hill
committed
Restoring support for swipe right gesture to play previous track in Music app
1 parent 2c04eed commit 42eeb7f

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

src/displayapp/screens/Music.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -275,6 +275,10 @@ bool Music::OnTouchEvent(Pinetime::Applications::TouchEvents event) {
275275
musicService.event(Controllers::MusicService::EVENT_MUSIC_NEXT);
276276
return true;
277277
}
278+
case TouchEvents::SwipeRight: {
279+
musicService.event(Controllers::MusicService::EVENT_MUSIC_PREV);
280+
return true;
281+
}
278282
default: {
279283
return false;
280284
}

0 commit comments

Comments
 (0)