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

Commit 17937015 authored by Adam Cohen's avatar Adam Cohen
Browse files

Add required cast

Change-Id: I6ff78f583777ec71d414d2fa66cce3390fd97d0e
parent 18bbc6a0
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);
        }