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 {