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

Commit aef3a065 authored by Santiago Etchebehere's avatar Santiago Etchebehere
Browse files

Fix empty options when going back from categories

Replay the flow once (setting to 0 was not needed for correct handling
of missing shapes)

Bug: 415706677
Flag: com.android.systemui.shared.new_customization_picker_ui
Test: visually verified
Change-Id: Ied0849abcaa652f0b2f9c7d0340991c2183b336f
parent 89b12b91
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -80,7 +80,7 @@ constructor(
        interactor.isThemedIconAvailable.shareIn(
            scope = viewModelScope,
            started = SharingStarted.Lazily,
            replay = 0,
            replay = 1,
        )

    private val overridingIsThemedIconEnabled = MutableStateFlow<Boolean?>(null)