From 41e92c2a48dcea01a217df987b245e3fb6aefb51 Mon Sep 17 00:00:00 2001 From: Pranav Vashi Date: Sun, 24 Apr 2022 01:51:09 +0530 Subject: [PATCH] Launcher3: Fix NPE with AppInfoBottomSheet Signed-off-by: Pranav Vashi Signed-off-by: DennySPb Change-Id: I9c34534686523288b0125e36ee3494daf6a018d8 Signed-off-by: DennySPb Signed-off-by: Pranav --- src/com/android/launcher3/customization/InfoBottomSheet.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/com/android/launcher3/customization/InfoBottomSheet.java b/src/com/android/launcher3/customization/InfoBottomSheet.java index 9778b4dcbe..dfbd56b4c9 100644 --- a/src/com/android/launcher3/customization/InfoBottomSheet.java +++ b/src/com/android/launcher3/customization/InfoBottomSheet.java @@ -148,4 +148,9 @@ public class InfoBottomSheet extends WidgetsBottomSheet { return false; } } + + @Override + protected boolean hasSeenEducationTip() { + return true; + } }