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

Commit 977c02a1 authored by Anton Potapov's avatar Anton Potapov
Browse files

Fix not expandable ColumnVolumeSliders

Flag: aconfig new_volume_panel TEAMFOOD
Test: manual on the phone
Fixes: 333986814
Change-Id: Id1ca091db5a188efbf3b515a17ac6a7cac81d808
parent b828afed
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -106,7 +106,7 @@ fun ColumnVolumeSliders(
            }
        }
        transition.AnimatedVisibility(
            visible = { it },
            visible = { it || !isExpandable },
            enter =
                expandVertically(animationSpec = tween(durationMillis = EXPAND_DURATION_MILLIS)),
            exit =
@@ -121,7 +121,7 @@ fun ColumnVolumeSliders(
                        val sliderState by sliderViewModel.slider.collectAsState()
                        transition.AnimatedVisibility(
                            modifier = Modifier.padding(top = 16.dp),
                            visible = { it },
                            visible = { it || !isExpandable },
                            enter = enterTransition(index = index, totalCount = viewModels.size),
                            exit = exitTransition(index = index, totalCount = viewModels.size)
                        ) {