Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 30a8e55d authored by Adam Cohen's avatar Adam Cohen Committed by Android Git Automerger
Browse files

am 17937015: Add required cast

* commit '17937015':
  Add required cast
parents 8739de66 17937015
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -52,7 +52,7 @@ public class InfoDropTarget extends ButtonDropTarget {

        if (mDrawable == null) {
            // TODO: investigate why this is ever happening. Presently only on one known device.
            mDrawable = r.getDrawable(R.drawable.info_target_selector);
            mDrawable = (TransitionDrawable) r.getDrawable(R.drawable.info_target_selector);
            setCompoundDrawablesRelativeWithIntrinsicBounds(mDrawable, null, null, null);
        }