[Bf-extensions-cvs] [b9c3f23] master: Urgent fix: T49403 Fix for broken change tab category feature: user preferences save was broken

meta-androcto noreply at git.blender.org
Tue Sep 20 10:17:40 CEST 2016


Commit: b9c3f23d503c8d81ccad9bb0795ccc2fb6c693d3
Author: meta-androcto
Date:   Tue Sep 20 18:17:20 2016 +1000
Branches: master
https://developer.blender.org/rBAb9c3f23d503c8d81ccad9bb0795ccc2fb6c693d3

Urgent fix: T49403 Fix for broken change tab category feature: user preferences save was broken

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

M	archimesh/__init__.py
M	measureit/__init__.py
M	mesh_bsurfaces.py
M	mesh_looptools.py
M	object_boolean_tools.py
M	oscurart_tools/__init__.py
M	space_view3d_3d_navigation.py
M	ui_layer_manager.py

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

diff --git a/archimesh/__init__.py b/archimesh/__init__.py
index 9167b8c..d05f59c 100644
--- a/archimesh/__init__.py
+++ b/archimesh/__init__.py
@@ -200,7 +200,7 @@ def register():
     bpy.utils.register_class(achm_window_panel.AchmWindowEditPanel)
     bpy.utils.register_class(Archi_Pref)
     INFO_MT_mesh_add.append(AchmMenu_func)
-
+    update_panel(None, bpy.context)
     # Define properties
     Scene.archimesh_select_only = BoolProperty(
             name="Only selected",
diff --git a/measureit/__init__.py b/measureit/__init__.py
index cf6567c..1a2aa37 100644
--- a/measureit/__init__.py
+++ b/measureit/__init__.py
@@ -124,7 +124,7 @@ def register():
     bpy.utils.register_class(measureit_main.MeasureitRenderPanel)
     bpy.utils.register_class(measureit_main.RenderSegmentButton)
     bpy.utils.register_class(Measure_Pref)
-
+    update_panel(None, bpy.context)
     # Define properties
     Scene.measureit_default_color = FloatVectorProperty(
         name="Default color",
diff --git a/mesh_bsurfaces.py b/mesh_bsurfaces.py
index 0a5d724..b90617b 100644
--- a/mesh_bsurfaces.py
+++ b/mesh_bsurfaces.py
@@ -3722,7 +3722,7 @@ def register():
     bpy.utils.register_class(CURVE_OT_SURFSK_reorder_splines)
     bpy.utils.register_class(CURVE_OT_SURFSK_first_points)
     bpy.utils.register_class(BsurfPreferences)
-
+    update_panel(None, bpy.context)
 
     bpy.types.Scene.SURFSK_cyclic_cross = bpy.props.BoolProperty(
         name="Cyclic Cross",
diff --git a/mesh_looptools.py b/mesh_looptools.py
index 6f81dde..36e4a5c 100644
--- a/mesh_looptools.py
+++ b/mesh_looptools.py
@@ -4848,7 +4848,7 @@ def register():
     bpy.types.VIEW3D_MT_edit_mesh_specials.prepend(menu_func)
     bpy.types.WindowManager.looptools = bpy.props.PointerProperty(\
         type = LoopToolsProps)
-
+    update_panel(None, bpy.context)
 
 # unregistering and removing menus
 def unregister():
diff --git a/object_boolean_tools.py b/object_boolean_tools.py
index b7a2b5c..7ef8d7a 100644
--- a/object_boolean_tools.py
+++ b/object_boolean_tools.py
@@ -1328,7 +1328,7 @@ def UnRegisterFastT():
 def register():
     for cls in classes:
         bpy.utils.register_class(cls)
-
+    update_panel(None, bpy.context)
     wm = bpy.context.window_manager
     # Scene variables
     bpy.types.Scene.BoolHide = BoolProperty(
diff --git a/oscurart_tools/__init__.py b/oscurart_tools/__init__.py
index 1688c6a..6898956 100644
--- a/oscurart_tools/__init__.py
+++ b/oscurart_tools/__init__.py
@@ -449,7 +449,7 @@ def register():
     # SETEO VARIABLE DE ENTORNO
     bpy.types.Scene.SearchAndSelectOt = bpy.props.StringProperty(
                                                default="Object name initials")
-
+    update_panel(None, bpy.context)
 
 def unregister():
     del bpy.types.Scene.oscurart
diff --git a/space_view3d_3d_navigation.py b/space_view3d_3d_navigation.py
index 5912747..1da9979 100644
--- a/space_view3d_3d_navigation.py
+++ b/space_view3d_3d_navigation.py
@@ -408,7 +408,7 @@ classes = [
 def register():
     for cls in classes:
         bpy.utils.register_class(cls)
-
+    update_panel(None, bpy.context)
 def unregister():
     for cls in classes:
         bpy.utils.unregister_class(cls)
diff --git a/ui_layer_manager.py b/ui_layer_manager.py
index e3628b3..a1722b7 100644
--- a/ui_layer_manager.py
+++ b/ui_layer_manager.py
@@ -584,7 +584,7 @@ def register():
     bpy.types.Scene.layergroups_index = IntProperty(default=-1)
     bpy.types.Scene.namedlayers = PointerProperty(type=NamedLayers)
     bpy.app.handlers.scene_update_post.append(check_init_data)
-
+    update_panel(None, bpy.context)
 
 def unregister():
     bpy.app.handlers.scene_update_post.remove(check_init_data)



More information about the Bf-extensions-cvs mailing list