fix for bugreport:

#21506 'sort by' while in append/link file browser causes files to disappear

- issue was that the objects were still filtered
- temporary fix until refactoring of the append/link integration
This commit is contained in:
2010-03-14 18:02:18 +00:00
parent 07d4307af2
commit a892bd6976

View File

@@ -55,6 +55,8 @@
#include "BLI_storage_types.h"
#include "BLI_dynstr.h"
#include "BLO_readfile.h"
#include "BKE_context.h"
#include "BKE_screen.h"
#include "BKE_global.h"
@@ -404,7 +406,16 @@ void file_change_dir(bContext *C, int checkdir)
/* could return but just refresh the current dir */
}
filelist_setdir(sfile->files, sfile->params->dir);
/* XXX special case handling
behaviour of filebrowser changes when
browsing into .blend file */
if (sfile->params->type == FILE_LOADLIB) {
char group[GROUP_MAX];
char dir[FILE_MAX];
if (filelist_islibrary(sfile->files, dir, group)) {
sfile->params->flag &= ~FILE_FILTER;
}
}
if(folderlist_clear_next(sfile))
folderlist_free(sfile->folders_next);