Fix bug 2266095 - all apps animates out when you return home by hitting back

We needed to check that they haven't exited on the down event.
diff --git a/src/com/android/launcher2/Launcher.java b/src/com/android/launcher2/Launcher.java
index a9d0c1a..cbf09b0 100644
--- a/src/com/android/launcher2/Launcher.java
+++ b/src/com/android/launcher2/Launcher.java
@@ -1332,7 +1332,7 @@
         } else if (event.getAction() == KeyEvent.ACTION_UP) {
             switch (event.getKeyCode()) {
                 case KeyEvent.KEYCODE_BACK:
-                    if (!event.isCanceled()) {
+                    if (event.isTracking() && !event.isCanceled()) {
                         mWorkspace.dispatchKeyEvent(event);
                         if (isAllAppsVisible()) {
                             closeAllApps(true);