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

Commit 9c3f4bff authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Dump the dark intensity with NavigationBarView"

parents 0d541559 eb0b0943
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -1100,10 +1100,11 @@ public class NavigationBarView extends FrameLayout implements PluginListener<Nav
                        visibilityToString(getCurrentView().getVisibility()),
                        getCurrentView().getAlpha()));

        pw.println(String.format("      disabled=0x%08x vertical=%s menu=%s",
        pw.println(String.format("      disabled=0x%08x vertical=%s menu=%s darkIntensity=%.2f",
                        mDisabledFlags,
                        mVertical ? "true" : "false",
                        getMenuButton().isVisible() ? "true" : "false"));
                        getMenuButton().isVisible() ? "true" : "false",
                        getLightTransitionsController().getCurrentDarkIntensity()));

        dumpButton(pw, "back", getBackButton());
        dumpButton(pw, "home", getHomeButton());