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

Commit 1b0720b9 authored by Julia Tuttle's avatar Julia Tuttle Committed by Android (Google) Code Review
Browse files

Merge "CallStyle: don't reglue icon+label if never glued" into main

parents 248f57ad 7f5aea44
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -229,7 +229,8 @@ public class EmphasizedNotificationButton extends Button {
                    + "gluedLayoutDirection = " + mGluedLayoutDirection);
        }

        if (layoutDirection != mGluedLayoutDirection) {
        final boolean alreadyGlued = mGluedLayoutDirection != LAYOUT_DIRECTION_UNDEFINED;
        if (alreadyGlued && layoutDirection != mGluedLayoutDirection) {
            if (DEBUG_NEW_ACTION_LAYOUT) {
                Log.d(TAG, "onRtlPropertiesChanged: layout direction changed; regluing");
            }