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

Commit 61a18989 authored by Colin Cross's avatar Colin Cross Committed by Automerger Merge Worker
Browse files

Fixes more @Nullable issues in System UI and WMShell. am: 63a020cc

parents 76b035be 63a020cc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -128,7 +128,7 @@ open class BaseScreenSharePermissionDialog(

    private fun createOptionsView(@LayoutRes layoutId: Int?) {
        if (layoutId == null) return
        val stub = findViewById<View>(R.id.options_stub) as ViewStub
        val stub = requireViewById<View>(R.id.options_stub) as ViewStub
        stub.layoutResource = layoutId
        stub.inflate()
    }