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:
authorJulian Eisel <eiseljulian@gmail.com>2019-09-02 17:37:50 +0300
committerJulian Eisel <eiseljulian@gmail.com>2019-09-02 17:39:39 +0300
commit99acf30eddd78b90c6795a672aa6c3c41ca2bddc (patch)
tree1c3bbb93e6b7dea78f68222d45d30af41b248f9a /source/blender/makesdna
parentaa0db0038ed82066db531938d660de730f987117 (diff)
Gray out number increment/decrement button for file open operations
The buttons are shown in the file browser context menu.
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_space_types.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_space_types.h b/source/blender/makesdna/DNA_space_types.h
index 5415b26c936..2fc42e904c2 100644
--- a/source/blender/makesdna/DNA_space_types.h
+++ b/source/blender/makesdna/DNA_space_types.h
@@ -679,7 +679,8 @@ typedef struct FileSelectParams {
short display_previous;
/** Details toggles (file size, creation date, etc.) */
char details_flags;
- char _pad2;
+ /* The type of file action (opening or saving) */
+ char action_type; /* eFileSel_Action */
/** Filter when (flags & FILE_FILTER) is true. */
int filter;