summaryrefslogtreecommitdiff
path: root/src/com/android/systemui/plugin/globalactions/wallet/WalletCardCarousel.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/systemui/plugin/globalactions/wallet/WalletCardCarousel.java')
-rw-r--r--src/com/android/systemui/plugin/globalactions/wallet/WalletCardCarousel.java4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/com/android/systemui/plugin/globalactions/wallet/WalletCardCarousel.java b/src/com/android/systemui/plugin/globalactions/wallet/WalletCardCarousel.java
index 10f2205..1a27acc 100644
--- a/src/com/android/systemui/plugin/globalactions/wallet/WalletCardCarousel.java
+++ b/src/com/android/systemui/plugin/globalactions/wallet/WalletCardCarousel.java
@@ -20,8 +20,6 @@ import android.annotation.NonNull;
import android.annotation.Nullable;
import android.content.Context;
import android.graphics.Rect;
-import android.os.Build.VERSION;
-import android.os.Build.VERSION_CODES;
import android.util.AttributeSet;
import android.util.DisplayMetrics;
import android.view.HapticFeedbackConstants;
@@ -136,7 +134,7 @@ class WalletCardCarousel extends RecyclerView {
protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
super.onLayout(changed, left, top, right, bottom);
int width = getWidth();
- if (VERSION.SDK_INT >= VERSION_CODES.Q) {
+ if (mWalletCardAdapter.getItemCount() > 1) {
// Whole carousel is opted out from system gesture.
mSystemGestureExclusionZone.set(0, 0, width, getHeight());
setSystemGestureExclusionRects(Collections.singletonList(mSystemGestureExclusionZone));