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

Commit 408ff24e authored by Wes Okuhara's avatar Wes Okuhara Committed by Android (Google) Code Review
Browse files

Merge "Screen capture: Update UI colors based on theme" into main

parents 49414c7e c07309e1
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -23,6 +23,7 @@ import androidx.activity.ComponentActivity
import androidx.activity.compose.setContent
import androidx.activity.enableEdgeToEdge
import androidx.lifecycle.lifecycleScope
import com.android.compose.theme.PlatformTheme
import com.android.systemui.screencapture.common.ScreenCaptureComponent
import com.android.systemui.screencapture.common.shared.model.ScreenCaptureActivityIntentParameters
import com.android.systemui.screencapture.common.shared.model.ScreenCaptureType
@@ -55,7 +56,7 @@ constructor(

        component =
            builder.setParameters(intentParameters).setScope(lifecycleScope).build().also {
                setContent { it.screenCaptureContent.Content() }
                setContent { PlatformTheme { it.screenCaptureContent.Content() } }
            }
    }