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:
authorPratik Borhade <pratikborhade302@gmail.com>2022-11-13 20:18:24 +0300
committerPratik Borhade <pratikborhade302@gmail.com>2022-11-13 20:18:24 +0300
commitb927cc9ba6c7567066f26fd82c95b0059a8cff75 (patch)
tree8f6e3b695e95d43b49ac6daa1b3513f0054cef26
parent1b34da5da6390492c5114796d1e860214bd97e1c (diff)
Fix T102187: Add knife tool in mesh panelblender-v3.4-release
Add knife tool option in mesh panel Reviewer: campbellbarton, JulienKaspar Differential Revision: https://developer.blender.org/D16395
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index 39684aaf161..d6492ea2d85 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -3849,6 +3849,7 @@ class VIEW3D_MT_edit_mesh(Menu):
layout.operator("mesh.bisect")
layout.operator("mesh.knife_project")
+ layout.operator("mesh.knife_tool")
if with_bullet:
layout.operator("mesh.convex_hull")