From cc5c10e18c3d257d5890e5c09269c0832ba02f4b Mon Sep 17 00:00:00 2001 From: nobbo Date: Wed, 25 Oct 2023 15:05:34 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=90=9C=E7=B4=A2=E6=A1=86?= =?UTF-8?q?=E5=AD=97=E4=BD=93=E8=A2=AB=E9=81=AE=E6=8C=A1=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: nobbo --- features/src/main/ets/components/NoteListComp.ets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/features/src/main/ets/components/NoteListComp.ets b/features/src/main/ets/components/NoteListComp.ets index b21cac3..9c66368 100644 --- a/features/src/main/ets/components/NoteListComp.ets +++ b/features/src/main/ets/components/NoteListComp.ets @@ -794,7 +794,7 @@ export struct SearchComp { .backgroundColor(this.longpress ? $r("app.color.search_longpress_bgcolor_f7f8f9") : $r("app.color.color_ffffff")) .caretColor($r("app.color.search_note_caret_color")) .enabled(this.longpress ? false : true) - .padding({ left: 6, top: 1 }) + .padding({ left: 6, top: 0, bottom: 0, right: 0 }) .onEditChange((isEditing: boolean) => { // this.search = isEditing }) -- Gitee