Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Montagne <montagne29@wanadoo.fr>2015-01-03 23:55:16 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2015-01-03 23:55:16 +0300
commitdcc5997527df32dfbb71874e3099b3790d8e9b4a (patch)
tree458d2cdbd3e8af18ac67af4ecb2558346307aeb3 /source/blender/editors/space_file/space_file.c
parentd8b00a3bf5c170c60e33a10c660820b35e2ec0a8 (diff)
FileBrowser: add search field in header bar.
Not much to add, pretty straightforward...
Diffstat (limited to 'source/blender/editors/space_file/space_file.c')
-rw-r--r--source/blender/editors/space_file/space_file.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/editors/space_file/space_file.c b/source/blender/editors/space_file/space_file.c
index 3f21e561546..76d3746c3d9 100644
--- a/source/blender/editors/space_file/space_file.c
+++ b/source/blender/editors/space_file/space_file.c
@@ -205,7 +205,8 @@ static void file_refresh(const bContext *C, ScrArea *UNUSED(sa))
filelist_setfilter_options(sfile->files, params->flag & FILE_HIDE_DOT,
false, /* TODO hide_parent, should be controllable? */
params->flag & FILE_FILTER ? params->filter : 0,
- params->filter_glob);
+ params->filter_glob,
+ params->filter_search);
if (filelist_empty(sfile->files)) {
thumbnails_stop(wm, sfile->files);