From 3cae9ca04353c33eb940ba2dccefe9b69d9e0ae7 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 17 Sep 2012 02:19:41 +0000 Subject: fix [#32564] Entries in recent list (file select dialog) don't get pushed to top if used again --- source/blender/editors/space_file/fsmenu.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source/blender/editors/space_file/fsmenu.h') 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; -- cgit v1.2.3