am 1c3f8ecc: Fix regression: google search icon doesn\'t show immediately

* commit '1c3f8ecccc80628263cf0b3769c7c53184db9aab':
  Fix regression: google search icon doesn't show immediately
diff --git a/src/com/android/launcher2/Launcher.java b/src/com/android/launcher2/Launcher.java
index 81569cd..d7a360d 100644
--- a/src/com/android/launcher2/Launcher.java
+++ b/src/com/android/launcher2/Launcher.java
@@ -431,6 +431,15 @@
             if (sGlobalSearchIcon == null || sVoiceSearchIcon == null || sAppMarketIcon == null) {
                 updateIconsAffectedByPackageManagerChanges();
             }
+            if (sGlobalSearchIcon != null) {
+                 updateGlobalSearchIcon(sGlobalSearchIcon);
+            }
+            if (sVoiceSearchIcon != null) {
+                updateVoiceSearchIcon(sVoiceSearchIcon);
+            }
+            if (sAppMarketIcon != null) {
+                updateAppMarketIcon(sAppMarketIcon);
+            }
         }
     }