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

Commit cfd4b956 authored by Matt Pietal's avatar Matt Pietal
Browse files

[DO NOT MERGE] Global actions tip

Make the whole area tapable instead of just the chevron

Fixes: 192599660
Test: manual
Change-Id: Id2e7bd3c2586766f0f59dace58811e6a91cb18df
parent d0e38d0a
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -24,7 +24,6 @@ import android.service.quickaccesswallet.QuickAccessWalletClient
import android.util.Log
import android.view.LayoutInflater
import android.view.ViewGroup
import android.widget.ImageView
import android.widget.TextView
import com.android.systemui.R
import com.android.systemui.controls.controller.ControlsController
@@ -76,8 +75,7 @@ class GlobalActionsInfoProvider @Inject constructor(
        val message = view.findViewById<TextView>(R.id.global_actions_change_message)
        message?.setText(context.getString(R.string.global_actions_change_description, walletTitle))

        val button = view.findViewById<ImageView>(R.id.global_actions_change_button)
        button.setOnClickListener { _ ->
        view.setOnClickListener { _ ->
            dismissParent.run()
            activityStarter.postStartActivityDismissingKeyguard(pendingIntent)
        }