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

Commit 1184e91a authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Fix TaskView over lockscreen" into tm-dev am: 14daf279

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/17322205

Change-Id: I1439f9bc70ec269cb57710540b0dd717976482f7
parents 4798db6b 14daf279
Loading
Loading
Loading
Loading
+4 −4
Original line number Original line Diff line number Diff line
@@ -77,8 +77,8 @@ class ControlsActivity @Inject constructor(
        initBroadcastReceiver()
        initBroadcastReceiver()
    }
    }


    override fun onResume() {
    override fun onStart() {
        super.onResume()
        super.onStart()


        parent = requireViewById<ViewGroup>(R.id.global_actions_controls)
        parent = requireViewById<ViewGroup>(R.id.global_actions_controls)
        parent.alpha = 0f
        parent.alpha = 0f
@@ -91,8 +91,8 @@ class ControlsActivity @Inject constructor(
        finish()
        finish()
    }
    }


    override fun onPause() {
    override fun onStop() {
        super.onPause()
        super.onStop()


        uiController.hide()
        uiController.hide()
    }
    }