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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2021-10-20 01:13:38 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-10-20 01:17:25 +0300
commitd73f6647906d4562a191b78faa578a619090aea9 (patch)
treee3ebdfd7b4d415a0b1c7f569c1d9dd6ffb8deea4 /release/scripts/modules/rna_prop_ui.py
parentd7b4350749ce3906fcca9803b863fb029b3f541a (diff)
Cleanup: trailing space, use single quotes for enums
Diffstat (limited to 'release/scripts/modules/rna_prop_ui.py')
-rw-r--r--release/scripts/modules/rna_prop_ui.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/modules/rna_prop_ui.py b/release/scripts/modules/rna_prop_ui.py
index 7da7ccdeddd..2cc806be10d 100644
--- a/release/scripts/modules/rna_prop_ui.py
+++ b/release/scripts/modules/rna_prop_ui.py
@@ -224,7 +224,7 @@ def draw(layout, context, context_member, property_type, *, use_edit=True):
if use_edit:
row = split.row(align=True)
- # Do not allow editing of overridden properties (we cannot use a poll function
+ # Do not allow editing of overridden properties (we cannot use a poll function
# of the operators here since they's have no access to the specific property).
row.enabled = not(is_lib_override and key in rna_item.id_data.override_library.reference)
if is_rna: