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

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

Merge "Explicitly set onClickListener on expand button"

parents 82008be1 1064950b
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -239,9 +239,8 @@ public class PipMenuActivity extends Activity {
        });
        mDismissButton = findViewById(R.id.dismiss);
        mDismissButton.setAlpha(0);
        mDismissButton.setOnClickListener((v) -> {
            dismissPip();
        });
        mDismissButton.setOnClickListener(v -> dismissPip());
        findViewById(R.id.expand_button).setOnClickListener(v -> expandPip());
        mActionsGroup = findViewById(R.id.actions_group);
        mBetweenActionPaddingLand = getResources().getDimensionPixelSize(
                R.dimen.pip_between_action_padding_land);