[Bf-extensions-cvs] [69b1305] blender-v3.4-release: Storypencil: Do bidirectional synchronization

Antonio Vazquez noreply at git.blender.org
Thu Nov 17 17:03:11 CET 2022


Commit: 69b1305f4b74fbd7e847acc6a5566755b9803d78
Author: Antonio Vazquez
Date:   Thu Nov 17 17:03:01 2022 +0100
Branches: blender-v3.4-release
https://developer.blender.org/rBAC69b1305f4b74fbd7e847acc6a5566755b9803d78

Storypencil: Do bidirectional synchronization

The time line in the child window was not affecting the
main window.

===================================================================

M	storypencil/synchro.py

===================================================================

diff --git a/storypencil/synchro.py b/storypencil/synchro.py
index 839de76..81b47b9 100644
--- a/storypencil/synchro.py
+++ b/storypencil/synchro.py
@@ -464,8 +464,7 @@ def update_sync(context: Context, win_id=None):
 
     # bidirectionnal sync: change main time from slave window
     if (
-            wm.storypencil_settings.bidirectional
-            and win_id != wm.storypencil_settings.main_window_id
+            win_id != wm.storypencil_settings.main_window_id
             and is_slave_window(wm, win_id)
     ):
         # get strip under time cursor in main window
@@ -658,12 +657,6 @@ class STORYPENCIL_PG_Settings(PropertyGroup):
         update=sync_active_update
     )
 
-    bidirectional: BoolProperty(
-        name="Bi-directional",
-        description="Enable bi-directional sync to drive Main time from synced Slave Windows",
-        default=False,
-    )
-
     main_window_id: StringProperty(
         name="Main Window ID",
         description="ID of the window driving the Synchronization",



More information about the Bf-extensions-cvs mailing list