Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'render_copy_settings/__init__.py')
-rw-r--r--render_copy_settings/__init__.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/render_copy_settings/__init__.py b/render_copy_settings/__init__.py
index 30cd762d..d891552a 100644
--- a/render_copy_settings/__init__.py
+++ b/render_copy_settings/__init__.py
@@ -59,16 +59,16 @@ from bpy.props import (
# Global properties for the script, for UI (as there’s no way to let them in the operator…).
########################################################################################################################
-class RenderCopySettingsScene(bpy.types.PropertyGroup):
+class RenderCopySettingsDataScene(bpy.types.PropertyGroup):
allowed = BoolProperty(default=True)
-class RenderCopySettingsSetting(bpy.types.PropertyGroup):
+class RenderCopySettingsDataSetting(bpy.types.PropertyGroup):
strid = StringProperty(default="")
copy = BoolProperty(default=False)
-class RenderCopySettings(bpy.types.PropertyGroup):
+class RenderCopySettingsData(bpy.types.PropertyGroup):
# XXX: The consistency of this collection is delegated to the UI code.
# It should only contain one element for each render setting.
affected_settings = CollectionProperty(type=RenderCopySettingsSetting,
@@ -91,9 +91,9 @@ class RenderCopySettings(bpy.types.PropertyGroup):
classes = (
- RenderCopySettingsScene,
- RenderCopySettingsSetting,
- RenderCopySettings,
+ RenderCopySettingsDataScene,
+ RenderCopySettingsDataSetting,
+ RenderCopySettingsData,
) + operator.classes + panel.classes