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:
authorTon Roosendaal <ton@blender.org>2013-02-23 15:51:10 +0400
committerTon Roosendaal <ton@blender.org>2013-02-23 15:51:10 +0400
commit7d81fd82310f90124b50986459d77f3599f25476 (patch)
tree356f70ee94823ace8f3ca2721f56926475902950 /source/blender/editors/mesh/editmesh_select.c
parent166de48ca4c7a035723be50c10568ff0e2e7ed84 (diff)
Bugfix #34374
Fixed tooltip for checker-select, it works on the active item, not selected ones.
Diffstat (limited to 'source/blender/editors/mesh/editmesh_select.c')
-rw-r--r--source/blender/editors/mesh/editmesh_select.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/mesh/editmesh_select.c b/source/blender/editors/mesh/editmesh_select.c
index e85649831f2..85aeb713f05 100644
--- a/source/blender/editors/mesh/editmesh_select.c
+++ b/source/blender/editors/mesh/editmesh_select.c
@@ -2654,7 +2654,7 @@ void MESH_OT_select_nth(wmOperatorType *ot)
/* identifiers */
ot->name = "Checker Deselect";
ot->idname = "MESH_OT_select_nth";
- ot->description = "Deselect every Nth element starting from a selected vertex, edge or face";
+ ot->description = "Deselect every Nth element starting from the active vertex, edge or face";
/* api callbacks */
ot->exec = edbm_select_nth_exec;