Started working on synchronising settings

This commit is contained in:
2016-06-16 16:33:35 +02:00
parent 58785977e7
commit efb1456596
2 changed files with 134 additions and 2 deletions

View File

@@ -66,20 +66,23 @@ def register():
blender = reload_mod('blender')
gui = reload_mod('gui')
async_loop = reload_mod('async_loop')
settings_sync = reload_mod('settings_sync')
else:
from . import blender, gui, async_loop
from . import blender, gui, async_loop, settings_sync
async_loop.setup_asyncio_executor()
async_loop.register()
blender.register()
gui.register()
settings_sync.register()
def unregister():
from . import blender, gui, async_loop
from . import blender, gui, async_loop, settings_sync
gui.unregister()
blender.unregister()
async_loop.unregister()
settings_sync.unregister()