Revert "Don't preload overview if current home isn't gestural overview"

This reverts commit d334cf7263add51767a86d5be49cf194a18fee7f.

Reason for revert: This is blocking our merge -- will temporarily revert and get the merge in

Change-Id: I701521845e3f801501a467b811df580fd825e91f
diff --git a/quickstep/recents_ui_overrides/src/com/android/quickstep/TouchInteractionService.java b/quickstep/recents_ui_overrides/src/com/android/quickstep/TouchInteractionService.java
index 573fdcc..bf9d531 100644
--- a/quickstep/recents_ui_overrides/src/com/android/quickstep/TouchInteractionService.java
+++ b/quickstep/recents_ui_overrides/src/com/android/quickstep/TouchInteractionService.java
@@ -697,10 +697,6 @@
         if (!mIsUserUnlocked) {
             return;
         }
-        if (!mMode.hasGestures && !mOverviewComponentObserver.isHomeAndOverviewSame()) {
-            // Prevent the overview from being started before the real home on first boot.
-            return;
-        }
 
         final ActivityControlHelper<BaseDraggingActivity> activityControl =
                 mOverviewComponentObserver.getActivityControlHelper();