--------------------------------- EditorAppWindow::SaveLayout Retrieve the editor that is currently visible in the stack
| 191 | // Retrieve the editor that is currently visible in the stack |
| 192 | // |
| 193 | void EditorAppWindow::SaveLayout() |
| 194 | { |
| 195 | EditorBase* const activeEditor = GetVisibleEditor(); |
| 196 | ET_ASSERT(activeEditor != nullptr); |
| 197 | |
| 198 | activeEditor->SaveLayout(); |
| 199 | } |
| 200 | |
| 201 | //--------------------------------- |
| 202 | // EditorAppWindow::GetVisibleEditor |
nothing calls this directly
no outgoing calls
no test coverage detected