Fix library bugs (#7648)

- Fix mixup in Action Menu
- Fix back action not clearing search
This commit is contained in:
Andreas
2022-07-30 04:42:18 +02:00
committed by GitHub
parent 7d74b174e0
commit db93d1da76
2 changed files with 12 additions and 6 deletions

View File

@@ -53,8 +53,8 @@ fun LibraryScreen(
onChangeCategoryClicked = onChangeCategoryClicked,
onMarkAsReadClicked = onMarkAsReadClicked,
onMarkAsUnreadClicked = onMarkAsUnreadClicked,
onDownloadClicked = onDownloadClicked,
onDeleteClicked = onDeleteClicked.takeIf { presenter.selection.none { it.source == LocalSource.ID } },
onDownloadClicked = onDownloadClicked.takeIf { presenter.selection.none { it.source == LocalSource.ID } },
onDeleteClicked = onDeleteClicked,
)
},
) { paddingValues ->