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

Commit 77ad0559 authored by Alan Viverette's avatar Alan Viverette Committed by Android Git Automerger
Browse files

am c2bf7440: Merge "Allow top-level drawable container in progressDrawable"...

am c2bf7440: Merge "Allow top-level drawable container in progressDrawable" into lmp-mr1-dev automerge: 80252a92 automerge: a638c44b

* commit 'c2bf7440':
  Allow top-level drawable container in progressDrawable
parents 29d267c7 c2bf7440
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1241,7 +1241,7 @@ public class ProgressBar extends View {
    private synchronized void doRefreshProgress(int id, int progress, boolean fromUser,
            boolean callBackToApp) {
        float scale = mMax > 0 ? (float) progress / (float) mMax : 0;
        final Drawable d = mCurrentDrawable;
        final Drawable d = mCurrentDrawable.getCurrent();
        if (d != null) {
            Drawable progressDrawable = null;