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>2018-12-20 05:01:40 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-12-20 05:11:04 +0300
commite71d489254c9d9639902e3ae8d2393a902eb11c8 (patch)
tree38f62429ed1331123658fdcf1e0fdfc64f1aec5f /release/scripts/startup/bl_ui/space_view3d.py
parent592165665543607bf43fdb13c4d2d7e51b37e8c6 (diff)
Cleanup: style
Diffstat (limited to 'release/scripts/startup/bl_ui/space_view3d.py')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index d6f27a3e0bc..3507ddb6c1f 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -4417,7 +4417,7 @@ class VIEW3D_PT_shading_lighting(Panel):
sub.scale_y = 0.6 # smaller studiolight preview
sub.template_icon_view(shading, "studio_light", scale=3)
else:
- sub.prop(system, "edit_studio_light", text="Disable Studio Light Edit", icon="NONE", toggle=True)
+ sub.prop(system, "edit_studio_light", text="Disable Studio Light Edit", icon='NONE', toggle=True)
col = split.column()
col.operator("wm.studiolight_userpref_show", emboss=False, text="", icon='PREFERENCES')
@@ -4426,7 +4426,7 @@ class VIEW3D_PT_shading_lighting(Panel):
col = split.column()
row = col.row()
- row.prop(shading, "use_world_space_lighting", text="", icon="WORLD", toggle=True)
+ row.prop(shading, "use_world_space_lighting", text="", icon='WORLD', toggle=True)
row = row.row()
row.active = shading.use_world_space_lighting
row.prop(shading, "studiolight_rotate_z", text="Rotation")
@@ -5263,7 +5263,7 @@ class VIEW3D_PT_transform_orientations(Panel):
if orientation:
row = layout.row(align=False)
- row.prop(orientation, "name", text="", icon="OBJECT_ORIGIN")
+ row.prop(orientation, "name", text="", icon='OBJECT_ORIGIN')
row.operator("transform.delete_orientation", text="", icon='X', emboss=False)