From 33863493707d3fd83def048677017eabf73f4ed9 Mon Sep 17 00:00:00 2001 From: xingyanan Date: Tue, 8 Feb 2022 09:54:08 +0800 Subject: [PATCH] split event bugfix Signed-off-by: xingyanan Change-Id: Ib0f8c9f09d4367a8a424001db3a76f06c866f1ec --- api/@ohos.commonEvent.d.ts | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/api/@ohos.commonEvent.d.ts b/api/@ohos.commonEvent.d.ts index 13e0e04469..36840ef8cd 100644 --- a/api/@ohos.commonEvent.d.ts +++ b/api/@ohos.commonEvent.d.ts @@ -298,11 +298,6 @@ declare namespace commonEvent { */ COMMON_EVENT_HOME_MODE = "common.event.HOME_MODE", - /** - * sent by the window manager service when the window mode is split. - */ - COMMON_EVENT_SPLIT_SCREEN = "common.event.SPLIT_SCREEN", - /** * sent by the smart function when the system in office mode. */ @@ -887,7 +882,13 @@ declare namespace commonEvent { * Indicates the common event Action indicating that the airplane mode status of the device changes. * Users can register this event to listen to the change of the airplane mode status of the device. */ - COMMON_EVENT_AIRPLANE_MODE_CHANGED = "usual.event.AIRPLANE_MODE" + COMMON_EVENT_AIRPLANE_MODE_CHANGED = "usual.event.AIRPLANE_MODE", + + /** + * sent by the window manager service when the window mode is split. + * @since 8 + */ + COMMON_EVENT_SPLIT_SCREEN = "common.event.SPLIT_SCREEN" } } -- Gitee