refactor(new_editor): streamline internal layout and command routing

This commit is contained in:
2026-04-15 19:30:58 +08:00
parent 9654f4d91a
commit df8f433fbb
84 changed files with 3250 additions and 3008 deletions

View File

@@ -27,6 +27,9 @@ std::string DescribeProjectPanelEvent(const ProjectPanel::Event& event) {
case ProjectPanel::EventKind::AssetOpened:
stream << "AssetOpened";
break;
case ProjectPanel::EventKind::RenameRequested:
stream << "RenameRequested";
break;
case ProjectPanel::EventKind::ContextMenuRequested:
stream << "ContextMenuRequested";
break;
@@ -144,6 +147,7 @@ void ApplyProjectSelection(
}
return;
case ProjectPanel::EventKind::AssetOpened:
case ProjectPanel::EventKind::RenameRequested:
case ProjectPanel::EventKind::ContextMenuRequested:
case ProjectPanel::EventKind::None:
default: