Set disabled state when getting new icon from DrawableFactory.

Change-Id: Ic9c508d24cc0e65d45f5c1f4bcbe8d5cd7fb9200
This commit is contained in:
Jon Miranda
2018-02-27 10:10:29 -08:00
parent ba61934e16
commit d82c5cd2b0
3 changed files with 5 additions and 6 deletions
@@ -65,7 +65,9 @@ public class DrawableFactory {
* Returns a FastBitmapDrawable with the icon.
*/
public FastBitmapDrawable newIcon(ItemInfoWithIcon info) {
return new FastBitmapDrawable(info);
FastBitmapDrawable drawable = new FastBitmapDrawable(info);
drawable.setIsDisabled(info.isDisabled());
return drawable;
}
/**