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 'rigify/__init__.py')
-rw-r--r--rigify/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/rigify/__init__.py b/rigify/__init__.py
index 1c9b1fa4..4f31459b 100644
--- a/rigify/__init__.py
+++ b/rigify/__init__.py
@@ -138,7 +138,7 @@ class RigifyFeatureSets(bpy.types.PropertyGroup):
context.preferences.addons[__package__].preferences.update_external_rigs()
enabled: bpy.props.BoolProperty(
- name = "Enabled",
+ name = "Enabled",
description = "Whether this feature-set is registered or not",
update = toggle_featureset,
default = True
@@ -177,7 +177,7 @@ class RigifyPreferences(AddonPreferences):
module_names = feature_set_list.get_installed_modules_names()
- # If there is a feature set preferences entry with no corresponding
+ # If there is a feature set preferences entry with no corresponding
# installed module, user must've manually removed it from the filesystem,
# so let's remove such entries.
to_delete = [ i for i, fs in enumerate(feature_set_prefs) if fs.module_name not in module_names ]