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-03-23 08:08:53 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-03-23 08:08:53 +0300
commitbb78f38bd1328b8cfe6b4e912e8bb0371035854a (patch)
treed5b652df6bebc29922300cc91f894b8d284dbf72 /release/scripts/startup/bl_ui/space_spreadsheet.py
parent3117de3a733e70959819ed6c1a76efddb879e269 (diff)
Cleanup: single quotes for Python enums, spelling
Diffstat (limited to 'release/scripts/startup/bl_ui/space_spreadsheet.py')
-rw-r--r--release/scripts/startup/bl_ui/space_spreadsheet.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_ui/space_spreadsheet.py b/release/scripts/startup/bl_ui/space_spreadsheet.py
index db9133456a7..188eddbcce3 100644
--- a/release/scripts/startup/bl_ui/space_spreadsheet.py
+++ b/release/scripts/startup/bl_ui/space_spreadsheet.py
@@ -32,13 +32,13 @@ class SPREADSHEET_HT_header(bpy.types.Header):
used_id = pinned_id if pinned_id else context.active_object
layout.prop(space, "object_eval_state", text="")
- if space.object_eval_state != "ORIGINAL":
+ if space.object_eval_state != 'ORIGINAL':
layout.prop(space, "geometry_component_type", text="")
if space.geometry_component_type != 'INSTANCES':
layout.prop(space, "attribute_domain", text="")
if used_id:
- layout.label(text=used_id.name, icon="OBJECT_DATA")
+ layout.label(text=used_id.name, icon='OBJECT_DATA')
layout.operator("spreadsheet.toggle_pin", text="", icon='PINNED' if pinned_id else 'UNPINNED', emboss=False)