mirror of
https://github.com/mihonapp/mihon.git
synced 2025-01-03 23:07:13 +01:00
Added tablet notes
This commit is contained in:
parent
610e37510c
commit
23be98b6d4
@ -162,7 +162,7 @@ fun MangaScreen(
|
||||
onEditCategoryClicked = onEditCategoryClicked,
|
||||
onEditIntervalClicked = onEditFetchIntervalClicked,
|
||||
onMigrateClicked = onMigrateClicked,
|
||||
onClickNotes = onNotesClicked,
|
||||
onNotesClicked = onNotesClicked,
|
||||
onMultiBookmarkClicked = onMultiBookmarkClicked,
|
||||
onMultiMarkAsReadClicked = onMultiMarkAsReadClicked,
|
||||
onMarkPreviousAsReadClicked = onMarkPreviousAsReadClicked,
|
||||
@ -198,7 +198,7 @@ fun MangaScreen(
|
||||
onEditCategoryClicked = onEditCategoryClicked,
|
||||
onEditIntervalClicked = onEditFetchIntervalClicked,
|
||||
onMigrateClicked = onMigrateClicked,
|
||||
onClickNotes = onNotesClicked,
|
||||
onNotesClicked = onNotesClicked,
|
||||
onMultiBookmarkClicked = onMultiBookmarkClicked,
|
||||
onMultiMarkAsReadClicked = onMultiMarkAsReadClicked,
|
||||
onMarkPreviousAsReadClicked = onMarkPreviousAsReadClicked,
|
||||
@ -244,7 +244,7 @@ private fun MangaScreenSmallImpl(
|
||||
onEditCategoryClicked: (() -> Unit)?,
|
||||
onEditIntervalClicked: (() -> Unit)?,
|
||||
onMigrateClicked: (() -> Unit)?,
|
||||
onClickNotes: () -> Unit,
|
||||
onNotesClicked: () -> Unit,
|
||||
|
||||
// For bottom action menu
|
||||
onMultiBookmarkClicked: (List<Chapter>, bookmarked: Boolean) -> Unit,
|
||||
@ -310,7 +310,7 @@ private fun MangaScreenSmallImpl(
|
||||
onClickEditCategory = onEditCategoryClicked,
|
||||
onClickRefresh = onRefresh,
|
||||
onClickMigrate = onMigrateClicked,
|
||||
onClickNotes = onClickNotes,
|
||||
onClickNotes = onNotesClicked,
|
||||
actionModeCounter = selectedChapterCount,
|
||||
onSelectAll = { onAllChapterSelected(true) },
|
||||
onInvertSelection = { onInvertSelection() },
|
||||
@ -430,7 +430,7 @@ private fun MangaScreenSmallImpl(
|
||||
contentType = MangaScreenItem.NOTES_SECTION,
|
||||
) {
|
||||
MangaNotesSection(
|
||||
onClickNotes = onClickNotes,
|
||||
onClickNotes = onNotesClicked,
|
||||
content = state.manga.notes,
|
||||
)
|
||||
}
|
||||
@ -500,7 +500,7 @@ fun MangaScreenLargeImpl(
|
||||
onEditCategoryClicked: (() -> Unit)?,
|
||||
onEditIntervalClicked: (() -> Unit)?,
|
||||
onMigrateClicked: (() -> Unit)?,
|
||||
onClickNotes: () -> Unit,
|
||||
onNotesClicked: () -> Unit,
|
||||
|
||||
// For bottom action menu
|
||||
onMultiBookmarkClicked: (List<Chapter>, bookmarked: Boolean) -> Unit,
|
||||
@ -559,7 +559,7 @@ fun MangaScreenLargeImpl(
|
||||
onClickEditCategory = onEditCategoryClicked,
|
||||
onClickRefresh = onRefresh,
|
||||
onClickMigrate = onMigrateClicked,
|
||||
onClickNotes = onClickNotes,
|
||||
onClickNotes = onNotesClicked,
|
||||
actionModeCounter = selectedChapterCount,
|
||||
onSelectAll = { onAllChapterSelected(true) },
|
||||
onInvertSelection = { onInvertSelection() },
|
||||
@ -661,6 +661,10 @@ fun MangaScreenLargeImpl(
|
||||
onTagSearch = onTagSearch,
|
||||
onCopyTagToClipboard = onCopyTagToClipboard,
|
||||
)
|
||||
MangaNotesSection(
|
||||
onClickNotes = onNotesClicked,
|
||||
content = state.manga.notes,
|
||||
)
|
||||
}
|
||||
},
|
||||
endContent = {
|
||||
|
Loading…
Reference in New Issue
Block a user