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>2019-01-21 02:41:39 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-01-21 02:41:39 +0300
commit0d8d26696f48b710ee2a033f04a76c7826641f05 (patch)
tree32c8a400cbcde525599d42494025a202f99b695a /release
parent49208a3419248087fc8e944f961d60c6dcdae3d4 (diff)
Cleanup: trailing space
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py24
1 files changed, 12 insertions, 12 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index a6002dfaad4..067309b1277 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -245,7 +245,7 @@ class VIEW3D_HT_header(Header):
text=lk_name,
icon=lk_icon,
)
-
+
if object_mode in {'PAINT_GPENCIL'}:
if context.workspace.tools.from_space_view3d_mode(object_mode).name == "Draw":
settings = tool_settings.gpencil_sculpt.guide
@@ -5331,7 +5331,7 @@ class VIEW3D_PT_gpencil_lock(Panel):
col = row.column()
col.prop(context.tool_settings.gpencil_sculpt, "lock_axis", expand=True)
-
+
class VIEW3D_PT_gpencil_guide(Panel):
bl_space_type = 'VIEW_3D'
bl_region_type = 'HEADER'
@@ -5344,34 +5344,34 @@ class VIEW3D_PT_gpencil_guide(Panel):
layout = self.layout
layout.label(text="Guides")
-
+
col = layout.column()
col.active = settings.use_guide
col.prop(settings, "type", expand=True)
-
+
if settings.type in {'PARALLEL'}:
col.prop(settings, "angle")
row = col.row(align=True)
-
- col.prop(settings, "use_snapping")
+
+ col.prop(settings, "use_snapping")
if settings.use_snapping:
-
+
if settings.type in {'RADIAL'}:
col.prop(settings, "angle_snap")
else:
col.prop(settings, "spacing")
-
+
col.label(text="Reference Point")
row = col.row(align=True)
- row.prop(settings, "reference_point", expand=True)
+ row.prop(settings, "reference_point", expand=True)
if settings.reference_point in {'CUSTOM'}:
- col.prop(settings, "location", text="Custom Location")
+ col.prop(settings, "location", text="Custom Location")
if settings.reference_point in {'OBJECT'}:
- col.prop(settings, "reference_object", text="Object Location")
+ col.prop(settings, "reference_object", text="Object Location")
if not settings.reference_object:
col.label(text="No object selected, using cursor")
-
+
class VIEW3D_PT_overlay_gpencil_options(Panel):
bl_space_type = 'VIEW_3D'
bl_region_type = 'HEADER'