diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2020-02-12 18:13:32 +0100 |
---|---|---|
committer | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2020-02-12 18:13:32 +0100 |
commit | e10460e36fac184cf62910be685e272914d0a542 (patch) | |
tree | 87328457d19f0ff5e0e4e39dcf6633fc0e11c858 /editor/project_manager.h | |
parent | 0f90ddbcf4489f46132ef48c1611d5c14ff2b776 (diff) |
Rename the "Last Modified" project list sorting option to "Last Edited"
The `project.godot` file will always be modified when editing a project,
but not when running it. This effectively makes the option sort by
last edition date, rather than modification as is typically understood
by users.
This closes #36127.
Diffstat (limited to 'editor/project_manager.h')
-rw-r--r-- | editor/project_manager.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/project_manager.h b/editor/project_manager.h index b8f7403e27..feeea9695d 100644 --- a/editor/project_manager.h +++ b/editor/project_manager.h @@ -134,7 +134,7 @@ public: enum FilterOption { FILTER_NAME, FILTER_PATH, - FILTER_MODIFIED, + FILTER_EDIT_DATE, }; private: |