diff options
author | Scott Jackson <daneren2005@gmail.com> | 2013-03-21 21:11:48 -0700 |
---|---|---|
committer | Scott Jackson <daneren2005@gmail.com> | 2013-03-21 21:11:48 -0700 |
commit | 81b38b3cb466dcdb9af669fff1886ce83caa16a7 (patch) | |
tree | 083cda32c1f117a2107c0a7fa1ffa896710afb89 /subsonic-android/src/github | |
parent | c342ad3b3404da540b9729ab6fbd6ffd7ed2319b (diff) | |
parent | 061ad1d3147d53ccd54bc1a180200fceaaf7f3b8 (diff) | |
download | dsub-81b38b3cb466dcdb9af669fff1886ce83caa16a7.tar.gz dsub-81b38b3cb466dcdb9af669fff1886ce83caa16a7.tar.bz2 dsub-81b38b3cb466dcdb9af669fff1886ce83caa16a7.zip |
Merge branch 'master' of https://github.com/daneren2005/Subsonic.git
Diffstat (limited to 'subsonic-android/src/github')
-rw-r--r-- | subsonic-android/src/github/daneren2005/dsub/activity/DownloadActivity.java | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/subsonic-android/src/github/daneren2005/dsub/activity/DownloadActivity.java b/subsonic-android/src/github/daneren2005/dsub/activity/DownloadActivity.java index d43f13b2..7c5c9513 100644 --- a/subsonic-android/src/github/daneren2005/dsub/activity/DownloadActivity.java +++ b/subsonic-android/src/github/daneren2005/dsub/activity/DownloadActivity.java @@ -1012,7 +1012,7 @@ public class DownloadActivity extends SubsonicTabActivity implements OnGestureLi // Top to Bottom swipe else if (e2.getY() - e1.getY() > swipeDistance && Math.abs(velocityY) > swipeVelocity) { warnIfNetworkOrStorageUnavailable(); - downloadService.pause(); + downloadService.seekTo(downloadService.getPlayerPosition() + 30000); onProgressChanged(); return true; } @@ -1020,8 +1020,7 @@ public class DownloadActivity extends SubsonicTabActivity implements OnGestureLi // Bottom to Top swipe else if (e1.getY() - e2.getY() > swipeDistance && Math.abs(velocityY) > swipeVelocity) { warnIfNetworkOrStorageUnavailable(); - start(); - onCurrentChanged(); + downloadService.seekTo(downloadService.getPlayerPosition() - 8000); onProgressChanged(); return true; } |