1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-11-24 02:12:15 -05:00

next and previous were reversed from K-9's standard interpretation of

them in the previous patch to add volume button navigation
This commit is contained in:
Jesse Vincent 2010-08-30 03:05:41 +00:00
parent 64511ed82b
commit 4bf233fba5

View File

@ -219,7 +219,7 @@ public class MessageView extends K9Activity implements OnClickListener
{ {
if(K9.useVolumeKeysForNavigationEnabled()) if(K9.useVolumeKeysForNavigationEnabled())
{ {
onPrevious(true); onNext(true);
return true; return true;
} }
} }
@ -227,7 +227,7 @@ public class MessageView extends K9Activity implements OnClickListener
{ {
if(K9.useVolumeKeysForNavigationEnabled()) if(K9.useVolumeKeysForNavigationEnabled())
{ {
onNext(true); onPrevious(true);
return true; return true;
} }
} }