Removed the 'recover temp' option from the splash screen - the way the temp saving currently

works, it's mostly non-functional there (i.e. when you've just started the application).

It would be nice if blender could name the temp files in a special way so that it could actually
search through the temp folder and find the most recently saved temp file, but for now, I'll
just remove the option.
This commit is contained in:
Matt Ebb 2010-03-18 07:05:20 +00:00
parent d96bf316ac
commit 3566400dc5

@ -1110,10 +1110,8 @@ static uiBlock *wm_block_create_splash(bContext *C, ARegion *ar, void *arg_unuse
else display_name= recent->filename;
uiItemStringO(col, display_name, ICON_FILE_BLEND, "WM_OT_open_mainfile", "path", recent->filename);
}
uiItemL(col, "Recovery", 0);
uiItemO(col, NULL, ICON_FILE_BLEND, "WM_OT_recover_last_session");
uiItemO(col, NULL, ICON_FILE_BLEND, "WM_OT_recover_auto_save");
uiItemS(col);
uiItemO(col, NULL, ICON_HELP, "WM_OT_recover_last_session");
uiItemL(col, "", 0);
uiCenteredBoundsBlock(block, 0.0f);