From 1a5c2f50e05ae155ea995ac84bd37c0fd8a41f95 Mon Sep 17 00:00:00 2001 From: Super12138 <70494801+Super12138@users.noreply.github.com> Date: Wed, 12 Feb 2025 08:35:26 +0800 Subject: [PATCH] =?UTF-8?q?fix(editor):=20=E9=94=99=E8=AF=AF=E7=9A=84?= =?UTF-8?q?=E6=96=87=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../cn/super12138/todo/ui/pages/editor/TodoEditorPage.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/src/main/kotlin/cn/super12138/todo/ui/pages/editor/TodoEditorPage.kt b/app/src/main/kotlin/cn/super12138/todo/ui/pages/editor/TodoEditorPage.kt index b784ac9..75043c1 100644 --- a/app/src/main/kotlin/cn/super12138/todo/ui/pages/editor/TodoEditorPage.kt +++ b/app/src/main/kotlin/cn/super12138/todo/ui/pages/editor/TodoEditorPage.kt @@ -247,7 +247,7 @@ fun TodoEditorPage( if (toDo != null) { Text( - text = stringResource(R.string.label_priority), + text = stringResource(R.string.label_more), style = MaterialTheme.typography.titleMedium ) @@ -258,9 +258,9 @@ fun TodoEditorPage( modifier = Modifier.fillMaxWidth() ) { Text( - text = stringResource(R.string.label_more), + text = stringResource(R.string.tip_mark_completed), style = MaterialTheme.typography.labelLarge, - modifier = Modifier.padding(end = 5.dp) + modifier = Modifier.padding(end = 10.dp) ) Switch( checked = completedSwitchState,