fix: does graph update flag

This commit is contained in:
Swann
2020-11-26 12:17:35 +01:00
parent 7f19d45b71
commit 5b43520353
2 changed files with 2 additions and 2 deletions

View File

@ -746,7 +746,7 @@ def depsgraph_evaluation(scene):
if node and node.owner in [session.id, RP_COMMON] and node.state == UP:
# Avoid slow geometry update
if 'EDIT' in context.mode and \
not settings.sync_during_editmode:
not settings.sync_flags.sync_during_editmode:
break
session.stash(node.uuid)

View File

@ -212,7 +212,7 @@ class SessionPrefs(bpy.types.AddonPreferences):
depsgraph_update_rate: bpy.props.IntProperty(
name='depsgraph update rate',
description='Dependency graph uppdate rate (milliseconds)',
default=100
default=1000
)
clear_memory_filecache: bpy.props.BoolProperty(
name="Clear memory filecache",