Long press on Launcher background no longer 
brings up customization tray on XLarge devices
diff --git a/src/com/android/launcher2/Launcher.java b/src/com/android/launcher2/Launcher.java
index ad37779..85088f8 100644
--- a/src/com/android/launcher2/Launcher.java
+++ b/src/com/android/launcher2/Launcher.java
@@ -1945,12 +1945,7 @@
                 mWorkspace.setAllowLongPress(false);
                 mWorkspace.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS,
                         HapticFeedbackConstants.FLAG_IGNORE_VIEW_SETTING);
-                if (LauncherApplication.isScreenXLarge()) {
-                    // Animate the widget chooser up from the bottom of the screen
-                    if (!isCustomizationDrawerVisible()) {
-                        showCustomizationDrawer(true);
-                    }
-                } else {
+                if (!LauncherApplication.isScreenXLarge()) {
                     showAddDialog(longClickCellInfo.cellX, longClickCellInfo.cellY);
                 }
             } else {