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

Commit 3858ecbd authored by Isaac Katzenelson's avatar Isaac Katzenelson Committed by Android Git Automerger
Browse files

am 090b98f4: Merge "remove content description from empty buttons" into jb-mr1-dev

* commit '090b98f4':
  remove content description from empty buttons
parents 0d31ac3c 090b98f4
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -202,5 +202,9 @@ public class TimerSetupView extends LinearLayout implements Button.OnClickListen
    protected void setLeftRightEnabled(boolean enabled) {
        mLeft.setEnabled(enabled);
        mRight.setEnabled(enabled);
        if (!enabled) {
            mLeft.setContentDescription(null);
            mRight.setContentDescription(null);
        }
    }
}