diff --git a/Editor/ContentBrowserWindow.cpp b/Editor/ContentBrowserWindow.cpp index 66a42a450..e163f3897 100644 --- a/Editor/ContentBrowserWindow.cpp +++ b/Editor/ContentBrowserWindow.cpp @@ -210,7 +210,7 @@ void ContentBrowserWindow::RefreshContent() if (!editor->recentFilenames.empty()) { wi::gui::Button& button = folderButtons[SELECTION_RECENT]; - button.Create("Recently Opened"); + button.Create("Recently Used"); button.SetLocalizationEnabled(false); button.SetSize(XMFLOAT2(wid, hei)); button.OnClick([this](wi::gui::EventArgs args) { diff --git a/Editor/Editor.cpp b/Editor/Editor.cpp index dd8132006..bc24b1c44 100644 --- a/Editor/Editor.cpp +++ b/Editor/Editor.cpp @@ -3846,6 +3846,8 @@ void EditorComponent::Save(const std::string& filename) GetCurrentEditorScene().path = filename; RefreshSceneList(); + RegisterRecentlyUsed(filename); + PostSaveText("Scene saved: ", GetCurrentEditorScene().path); } void EditorComponent::SaveAs()