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

Commit 4264f983 authored by Colin Cross's avatar Colin Cross Committed by Automerger Merge Worker
Browse files

Fix kotlin nullable errors in ThemePicker am: 48b42253

parents 8fc3abd3 48b42253
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -95,7 +95,7 @@ object ColorSectionViewBinder {
                LayoutInflater.from(view.context)
                    .inflate(R.layout.color_option_no_background, view, false)
            item.payload?.let { ColorOptionIconBinder.bind(itemView as ViewGroup, item.payload) }
            val optionSelectedView = itemView.findViewById<ImageView>(R.id.option_selected)
            val optionSelectedView = itemView.requireViewById<ImageView>(R.id.option_selected)

            lifecycleOwner.lifecycleScope.launch {
                lifecycleOwner.repeatOnLifecycle(Lifecycle.State.STARTED) {