Hide shadows on hidden app tiles

This commit is contained in:
Cameron Gutman
2020-11-14 16:45:43 -06:00
parent 9b8a179f4a
commit f5e0443abb
2 changed files with 7 additions and 2 deletions
+5
View File
@@ -220,6 +220,11 @@ static UIImage* noImage;
[self updateAppImage];
}
// Show no shadow for hidden apps. Because we adjust the opacity of the
// cells for hidden apps, it makes them look bad when the shadow draws
// through the app tile.
self.superview.layer.shadowOpacity = _app.hidden ? 0.0f : 0.5f;
// Update opacity if neccessary
[self setAlpha:_app.hidden ? 0.4 : 1.0];