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:
authorAntonioya <blendergit@gmail.com>2019-08-09 18:46:05 +0300
committerAntonioya <blendergit@gmail.com>2019-08-09 18:46:05 +0300
commit18668a20cb419ea1a2e17fc9314eb7397e13a55c (patch)
tree09f25ebf12f33a353ddae20226dd74960a02b1e1 /release
parent810caad80e6f1d860ed6b2e6323c541d3291916e (diff)
Cleanup: Remove blank lines and trim end line spaces
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py20
1 files changed, 10 insertions, 10 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index cfe4a06dcc0..65619ffd285 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -4458,7 +4458,7 @@ class VIEW3D_MT_edit_gpencil(Menu):
layout.menu("VIEW3D_MT_weight_gpencil")
layout.separator()
-
+
layout.menu("VIEW3D_MT_edit_gpencil_showhide")
layout.operator_menu_enum("gpencil.stroke_separate", "mode")
@@ -4468,14 +4468,14 @@ class VIEW3D_MT_edit_gpencil(Menu):
# Remove
layout.menu("VIEW3D_MT_edit_gpencil_delete")
-
+
class VIEW3D_MT_edit_gpencil_stroke(Menu):
bl_label = "Stroke"
def draw(self, _context):
layout = self.layout
-
+
layout.operator("gpencil.stroke_subdivide", text="Subdivide").only_selected = False
layout.menu("VIEW3D_MT_gpencil_simplify")
layout.operator("gpencil.stroke_trim", text="Trim")
@@ -4506,21 +4506,21 @@ class VIEW3D_MT_edit_gpencil_point(Menu):
def draw(self, _context):
layout = self.layout
-
+
layout.operator("gpencil.extrude_move", text="Extrude Points")
layout.separator()
-
+
layout.operator("gpencil.stroke_smooth", text="Smooth Points").only_selected = True
layout.separator()
layout.operator("gpencil.stroke_merge", text="Merge Points")
-
- # TODO: add new RIP operator
+
+ # TODO: add new RIP operator
layout.separator()
-
+
layout.menu("VIEW3D_MT_gpencil_vertex_group")
@@ -4554,7 +4554,7 @@ class VIEW3D_MT_gpencil_animation(Menu):
def draw(self, _context):
layout = self.layout
- layout.operator("gpencil.blank_frame_add")
+ layout.operator("gpencil.blank_frame_add")
layout.separator()
@@ -4593,7 +4593,7 @@ class VIEW3D_MT_edit_gpencil_showhide(Menu):
def draw(self, _context):
layout = self.layout
-
+
layout.operator("gpencil.hide", text="Hide Active Layer")
layout.operator("gpencil.reveal", text="Show All Layers")