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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2013-12-20 20:39:22 +0400
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2013-12-20 20:57:11 +0400
commit163e544006ffb7224afdce083c41eb0698b0be15 (patch)
treeba9c14096c9ed05237f53f1d7949416393d72843 /source/blender/windowmanager
parentaec90a8fafe19dfad110d9473d3f70e3aeeb8771 (diff)
Fix bookmarks not appearing in file browser after "copy previous settings".
Diffstat (limited to 'source/blender/windowmanager')
-rw-r--r--source/blender/windowmanager/intern/wm_files.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/windowmanager/intern/wm_files.c b/source/blender/windowmanager/intern/wm_files.c
index af86e0affea..9c479a2b868 100644
--- a/source/blender/windowmanager/intern/wm_files.c
+++ b/source/blender/windowmanager/intern/wm_files.c
@@ -97,6 +97,7 @@
#include "IMB_thumbs.h"
#include "ED_datafiles.h"
+#include "ED_fileselect.h"
#include "ED_object.h"
#include "ED_screen.h"
#include "ED_sculpt.h"
@@ -662,7 +663,7 @@ int wm_homefile_read(bContext *C, ReportList *reports, bool from_memory, const c
int wm_history_read_exec(bContext *UNUSED(C), wmOperator *UNUSED(op))
{
- /* TODO, read bookmarks */
+ ED_file_read_bookmarks();
wm_read_history();
return OPERATOR_FINISHED;
}