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:
authorNathan Craddock <nzcraddock@gmail.com>2019-06-22 00:27:05 +0300
committerNathan Craddock <nzcraddock@gmail.com>2019-06-22 00:27:05 +0300
commit56314980ac65f59b3e4b553bd157dc0efb40f472 (patch)
tree60587c617580d1bf192875677dc906549c038baf /source/blender/blenkernel/BKE_main.h
parent6c82357176eaf1f5005b9c45258cef3e3e4566a1 (diff)
Outliner: Add sync selection flag to main
The is_sync_select_dirty flag will be set after outliner and 3D viewport selection events to indicate a sync needs to occur.
Diffstat (limited to 'source/blender/blenkernel/BKE_main.h')
-rw-r--r--source/blender/blenkernel/BKE_main.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/blenkernel/BKE_main.h b/source/blender/blenkernel/BKE_main.h
index 1c987d5eb8e..18e36fd788f 100644
--- a/source/blender/blenkernel/BKE_main.h
+++ b/source/blender/blenkernel/BKE_main.h
@@ -81,6 +81,7 @@ typedef struct Main {
char recovered; /* indicate the main->name (file) is the recovered one */
/** All current ID's exist in the last memfile undo step. */
char is_memfile_undo_written;
+ char is_sync_select_dirty;
BlendThumbnail *blen_thumb;