From f9bfd48479b6f97d3809579187db762928149ad9 Mon Sep 17 00:00:00 2001 From: ssdfasd <2156608475@qq.com> Date: Fri, 10 Apr 2026 02:04:24 +0800 Subject: [PATCH] Fix editor shell asset header contract --- .../XCEditor/Shell/UIEditorShellAsset.h | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/new_editor/include/XCEditor/Shell/UIEditorShellAsset.h b/new_editor/include/XCEditor/Shell/UIEditorShellAsset.h index 0b4e1b07..32815db6 100644 --- a/new_editor/include/XCEditor/Shell/UIEditorShellAsset.h +++ b/new_editor/include/XCEditor/Shell/UIEditorShellAsset.h @@ -32,18 +32,18 @@ struct EditorShellAsset { enum class EditorShellAssetValidationCode : std::uint8_t { None = 0, - InvalidPanelRegistry, - InvalidWorkspace, - InvalidWorkspaceSession, - InvalidShellMenuModel, - InvalidShortcutConfiguration, - MissingPanelDescriptor, - PanelTitleMismatch, - PanelPlaceholderMismatch, - DuplicateShellPresentationPanelId, - MissingShellPresentationPanelDescriptor, - MissingRequiredShellPresentation, - ShellPresentationKindMismatch + InvalidPanelRegistry = 1, + MissingPanelDescriptor = 2, + PanelTitleMismatch = 3, + PanelPlaceholderMismatch = 4, + InvalidWorkspace = 5, + InvalidWorkspaceSession = 6, + MissingShellPresentationPanelDescriptor = 7, + DuplicateShellPresentationPanelId = 8, + MissingRequiredShellPresentation = 9, + ShellPresentationKindMismatch = 10, + InvalidShellMenuModel = 11, + InvalidShortcutConfiguration = 12 }; struct EditorShellAssetValidationResult {