From f0ec7c2ec6ed97d3951364dfb59b144e15ecd33b Mon Sep 17 00:00:00 2001 From: Julian Eisel Date: Fri, 20 Sep 2019 16:16:09 +0200 Subject: [PATCH] UI: Use vertical file list for "Recover Auto Save" Pablo and William agreed that the main purpose of the layout should be to list files in a way that it's easy see which files were created/modified when. Previously it was set to "Long List" to show the modification time, now the vertical list is much better suited. The time is shown anyway. --- source/blender/windowmanager/intern/wm_files.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/windowmanager/intern/wm_files.c b/source/blender/windowmanager/intern/wm_files.c index 561300ab7b9..f96a8c3d7fd 100644 --- a/source/blender/windowmanager/intern/wm_files.c +++ b/source/blender/windowmanager/intern/wm_files.c @@ -2515,7 +2515,7 @@ void WM_OT_recover_auto_save(wmOperatorType *ot) FILE_BLENDER, FILE_OPENFILE, WM_FILESEL_FILEPATH, - FILE_HORIZONTALDISPLAY, + FILE_VERTICALDISPLAY, FILE_SORT_TIME); }