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

Commit 61c58575 authored by Adam Powell's avatar Adam Powell Committed by Android Git Automerger
Browse files

am 13cfcacf: Allow action bar navigation icon resource id of 0

* commit '13cfcacf2a39b742ed9b0fea25924fc828e8c107':
  Allow action bar navigation icon resource id of 0
parents c78f2f7f 6bb10554
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -569,7 +569,7 @@ public class ToolbarWidgetWrapper implements DecorToolbar {

    @Override
    public void setNavigationIcon(int resId) {
        setNavigationIcon(mToolbar.getContext().getDrawable(resId));
        setNavigationIcon(resId != 0 ? mToolbar.getContext().getDrawable(resId) : null);
    }

    @Override