Minor cleanup

This commit is contained in:
arkon
2023-10-14 22:46:51 -04:00
parent 447bcb28ef
commit 82a9d36df7
6 changed files with 12 additions and 25 deletions

View File

@@ -106,11 +106,11 @@ fun HistoryDeleteAllDialog(
@ThemePreviews
@Composable
internal fun HistoryDeleteDialogPreview() {
private fun HistoryDeleteDialogPreview() {
TachiyomiTheme {
HistoryDeleteDialog(
onDismissRequest = {},
onDelete = { _ -> run {} },
onDelete = {},
)
}
}

View File

@@ -30,7 +30,7 @@ import tachiyomi.domain.history.model.HistoryWithRelations
import tachiyomi.presentation.core.components.material.padding
import tachiyomi.presentation.core.util.ThemePreviews
private val HISTORY_ITEM_HEIGHT = 96.dp
private val HistoryItemHeight = 96.dp
@Composable
fun HistoryItem(
@@ -43,7 +43,7 @@ fun HistoryItem(
Row(
modifier = modifier
.clickable(onClick = onClickResume)
.height(HISTORY_ITEM_HEIGHT)
.height(HistoryItemHeight)
.padding(horizontal = MaterialTheme.padding.medium, vertical = MaterialTheme.padding.small),
verticalAlignment = Alignment.CenterVertically,
) {
@@ -93,7 +93,7 @@ fun HistoryItem(
@ThemePreviews
@Composable
internal fun HistoryItemPreviews(
private fun HistoryItemPreviews(
@PreviewParameter(HistoryWithRelationsProvider::class)
historyWithRelations: HistoryWithRelations,
) {