From 5a9253d5a9f9f7e60e16cc5ae5e7e0793db2658b Mon Sep 17 00:00:00 2001 From: zhanghang Date: Mon, 9 Jun 2025 14:21:20 +0800 Subject: [PATCH] =?UTF-8?q?FocusWrapMode=E6=9E=9A=E4=B8=BE=E7=B1=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: zhanghang --- arkui/ace_engine/native/native_node.h | 2 +- arkui/ace_engine/native/native_type.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/arkui/ace_engine/native/native_node.h b/arkui/ace_engine/native/native_node.h index 248c7b520..520abe82e 100644 --- a/arkui/ace_engine/native/native_node.h +++ b/arkui/ace_engine/native/native_node.h @@ -6605,7 +6605,7 @@ typedef enum { * * @since 20 */ - NODE_GRID_FOCUS_WRAP_MODE, + NODE_GRID_FOCUS_WRAP_MODE = 1013006, /** * @brief Defines the column width of the text picker. diff --git a/arkui/ace_engine/native/native_type.h b/arkui/ace_engine/native/native_type.h index 92126f66d..14df29f5c 100644 --- a/arkui/ace_engine/native/native_type.h +++ b/arkui/ace_engine/native/native_type.h @@ -694,9 +694,9 @@ typedef enum { */ typedef enum { /** Default mode, where focus does not wrap when arrow keys are used. */ - ARKUI_FOCUS_WRAPMODE_DEFAULT = 0, + ARKUI_FOCUS_WRAP_MODE_DEFAULT = 0, /** Focus wraps automatically when arrow keys are used. */ - ARKUI_FOCUS_WRAPMODE_WRAP_WITH_ARROW = 1, + ARKUI_FOCUS_WRAP_WITH_ARROW = 1, } ArkUI_FocusWrapMode; /** -- Gitee