Don't display loading text when loading album sets.

bug:6635606
Change-Id: I55f0dafd5ead8455ed8bee1f03c06ca03662ebbd
diff --git a/src/com/android/gallery3d/ui/AlbumSetSlotRenderer.java b/src/com/android/gallery3d/ui/AlbumSetSlotRenderer.java
index 7b4a866..cca8d40 100644
--- a/src/com/android/gallery3d/ui/AlbumSetSlotRenderer.java
+++ b/src/com/android/gallery3d/ui/AlbumSetSlotRenderer.java
@@ -170,12 +170,7 @@
 
     protected int renderLabel(
             GLCanvas canvas, AlbumSetEntry entry, int width, int height) {
-        // We show the loading message only when the album is still loading
-        // (Not when we are still preparing the label)
         Texture content = checkTexture(entry.labelTexture);
-        if (entry.album == null) {
-            content = mDataWindow.getLoadingTexture();
-        }
         if (content != null) {
             int b = AlbumLabelMaker.getBorderSize();
             int h = content.getHeight();