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:
authorCampbell Barton <ideasman42@gmail.com>2012-09-17 06:19:41 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-09-17 06:19:41 +0400
commit3cae9ca04353c33eb940ba2dccefe9b69d9e0ae7 (patch)
tree1ea9aa812c9e6fb239e7650600a038e8b9203ed7 /source/blender/editors/space_file/fsmenu.h
parenta5003727c59859e8e9e2650ce18532ebc5771a88 (diff)
fix [#32564] Entries in recent list (file select dialog) don't get pushed to top if used again
Diffstat (limited to 'source/blender/editors/space_file/fsmenu.h')
-rw-r--r--source/blender/editors/space_file/fsmenu.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/editors/space_file/fsmenu.h b/source/blender/editors/space_file/fsmenu.h
index a16aab19842..875f8de42bd 100644
--- a/source/blender/editors/space_file/fsmenu.h
+++ b/source/blender/editors/space_file/fsmenu.h
@@ -45,7 +45,8 @@ typedef enum FSMenuCategory {
typedef enum FSMenuInsert {
FS_INSERT_SORTED = (1 << 0),
- FS_INSERT_SAVE = (1 << 1)
+ FS_INSERT_SAVE = (1 << 1),
+ FS_INSERT_FIRST = (1 << 2) /* moves the item to the front of the list when its already there */
} FSMenuInsert;
struct FSMenu;