summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/com/android/mail/ui/SwipeableListView.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com/android/mail/ui/SwipeableListView.java b/src/com/android/mail/ui/SwipeableListView.java
index 987e52a52..cc3750e53 100644
--- a/src/com/android/mail/ui/SwipeableListView.java
+++ b/src/com/android/mail/ui/SwipeableListView.java
@@ -303,7 +303,7 @@ public class SwipeableListView extends ListView implements Callback, OnScrollLis
position = getPositionForView(view);
} catch (Exception e) {
position = INVALID_POSITION;
- LogUtils.w(LOG_TAG, "Exception finding position; using alternate strategy");
+ LogUtils.w(LOG_TAG, e, "Exception finding position; using alternate strategy");
}
if (position == INVALID_POSITION) {
// Try the other way!
@@ -316,7 +316,7 @@ public class SwipeableListView extends ListView implements Callback, OnScrollLis
.getConversation();
foundId = foundConv.id;
if (foundId == convId) {
- position = i;
+ position = i + getFirstVisiblePosition();
break;
}
}