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>2020-07-11 15:03:27 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-07-11 15:09:45 +0300
commit415d3ee05bfa51d7a71fa8417682e38186915776 (patch)
tree5862c9f67910e5576462598301184dc4d10d5379 /release
parent6e698653dfff094de193cd4de2d4d3da4097d829 (diff)
UV: add path select operator that uses the selection
Instead of using the mouse cursor position, this selects between existing selected elements. Access this since picking a selection path doesn't work from the menu.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_image.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/space_image.py b/release/scripts/startup/bl_ui/space_image.py
index e272a1dbd68..651866cf316 100644
--- a/release/scripts/startup/bl_ui/space_image.py
+++ b/release/scripts/startup/bl_ui/space_image.py
@@ -191,7 +191,7 @@ class IMAGE_MT_select_linked(Menu):
layout = self.layout
layout.operator("uv.select_linked", text="Linked")
- layout.operator("uv.shortest_path_pick", text="Shortest Path")
+ layout.operator("uv.shortest_path_select", text="Shortest Path")
class IMAGE_MT_image(Menu):