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

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

Merge "Fix TaskView over lockscreen" into tm-dev

parents 90b2bfd4 02f723b7
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -77,8 +77,8 @@ class ControlsActivity @Inject constructor(
        initBroadcastReceiver()
    }

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

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

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

        uiController.hide()
    }