mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Dont allow dismissing the bottom sheet without save/cancel
This commit is contained in:
parent
4e87d55b27
commit
db76f83646
1 changed files with 1 additions and 1 deletions
|
|
@ -42,7 +42,7 @@ fun WebReaderLabelsSelectionSheet(viewModel: WebReaderViewModel) {
|
|||
|
||||
val modalBottomSheetState = rememberModalBottomSheetState(
|
||||
ModalBottomSheetValue.HalfExpanded,
|
||||
confirmStateChange = { false }
|
||||
confirmStateChange = { it != ModalBottomSheetValue.Hidden }
|
||||
)
|
||||
|
||||
if (isActive) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue