diff --git a/js/ui/appDisplay.js b/js/ui/appDisplay.js
index 5b42f2b10..9b2519348 100644
--- a/js/ui/appDisplay.js
+++ b/js/ui/appDisplay.js
@@ -1331,6 +1331,7 @@ var FolderIcon = class FolderIcon {
     _redisplay() {
         this._updateName();
         this.actor.visible = this.view.getAllItems().length > 0;
+        this.icon.update();
         this.emit('apps-changed');
     }
 
diff --git a/js/ui/iconGrid.js b/js/ui/iconGrid.js
index cf6b48b20..bb6829673 100644
--- a/js/ui/iconGrid.js
+++ b/js/ui/iconGrid.js
@@ -141,6 +141,10 @@ class BaseIcon extends St.Bin {
         // animating.
         zoomOutActor(this.child);
     }
+
+    update() {
+        this._createIconTexture(this.iconSize);
+    }
 });
 
 function clamp(value, min, max) {