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:
authorWilliam Reynish <billrey@me.com>2020-02-17 13:16:13 +0300
committerWilliam Reynish <billrey@me.com>2020-02-17 13:16:13 +0300
commitcec7db2004526e44d9541340d7c356ae884eafc1 (patch)
treef0646986a2b51a77b93b4563fae36067a175d980 /release
parentc64cea14edddd50d33a6c43c0327edd8ce186e30 (diff)
UI: Use crosshair cursor for Extrude to Cursor tools
Since this tool doesn't perform selections when you click, it's important that the cursor helps communicate that something else will happen. Also fix missing 'to' in Curve Edit Mode.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_toolsystem_toolbar.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/space_toolsystem_toolbar.py b/release/scripts/startup/bl_ui/space_toolsystem_toolbar.py
index 02db00e36c0..16485833ab2 100644
--- a/release/scripts/startup/bl_ui/space_toolsystem_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_toolsystem_toolbar.py
@@ -456,6 +456,7 @@ class _defs_edit_armature:
return dict(
idname="builtin.extrude_to_cursor",
label="Extrude to Cursor",
+ cursor='CROSSHAIR',
icon="ops.armature.extrude_cursor",
widget=None,
keymap=(),
@@ -710,6 +711,7 @@ class _defs_edit_mesh:
return dict(
idname="builtin.extrude_to_cursor",
label="Extrude to Cursor",
+ cursor='CROSSHAIR',
icon="ops.mesh.dupli_extrude_cursor",
widget=None,
keymap=(),
@@ -892,7 +894,8 @@ class _defs_edit_curve:
def extrude_cursor():
return dict(
idname="builtin.extrude_cursor",
- label="Extrude Cursor",
+ label="Extrude to Cursor",
+ cursor='CROSSHAIR',
icon="ops.curve.extrude_cursor",
widget=None,
keymap=(),