Merge lp:~vthompson/music-app/fix-now-playing-swipe-direction into lp:music-app/remix

Proposed by Victor Thompson
Status: Merged
Approved by: Andrew Hayzen
Approved revision: 791
Merged at revision: 791
Proposed branch: lp:~vthompson/music-app/fix-now-playing-swipe-direction
Merge into: lp:music-app/remix
Diff against target: 15 lines (+2/-2)
1 file modified
MusicNowPlaying.qml (+2/-2)
To merge this branch: bzr merge lp:~vthompson/music-app/fix-now-playing-swipe-direction
Reviewer Review Type Date Requested Status
Ubuntu Phone Apps Jenkins Bot continuous-integration Approve
Andrew Hayzen Approve
Review via email: mp+246847@code.launchpad.net

Commit message

Fix cover art swipe directions.

Description of the change

Fix cover art swipe directions.

To post a comment you must log in.
Revision history for this message
Andrew Hayzen (ahayzen) wrote :

LGTM :)

review: Approve
Revision history for this message
Ubuntu Phone Apps Jenkins Bot (ubuntu-phone-apps-jenkins-bot) wrote :
review: Approve (continuous-integration)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'MusicNowPlaying.qml'
2--- MusicNowPlaying.qml 2015-01-18 00:27:19 +0000
3+++ MusicNowPlaying.qml 2015-01-18 17:04:50 +0000
4@@ -295,9 +295,9 @@
5 if (Math.abs(diff) < units.gu(4)) {
6 return;
7 } else if (diff < 0) {
8+ player.nextSong()
9+ } else if (diff > 0) {
10 player.previousSong()
11- } else if (diff > 0) {
12- player.nextSong()
13 }
14 }
15 }

Subscribers

People subscribed via source and target branches