[Bf-blender-cvs] [c84095f] master: Editmesh: Update tooltips for vert/edge/face buttons

Campbell Barton noreply at git.blender.org
Sun Apr 27 19:53:51 CEST 2014


Commit: c84095fe7fe8cc91672f0ab59119d7d3327b1136
Author: Campbell Barton
Date:   Mon Apr 28 03:52:42 2014 +1000
https://developer.blender.org/rBc84095fe7fe8cc91672f0ab59119d7d3327b1136

Editmesh: Update tooltips for vert/edge/face buttons

===================================================================

M	source/blender/editors/space_view3d/view3d_header.c

===================================================================

diff --git a/source/blender/editors/space_view3d/view3d_header.c b/source/blender/editors/space_view3d/view3d_header.c
index 6c04f83..27d03bd 100644
--- a/source/blender/editors/space_view3d/view3d_header.c
+++ b/source/blender/editors/space_view3d/view3d_header.c
@@ -278,10 +278,10 @@ void uiTemplateEditModeSelection(uiLayout *layout, struct bContext *C)
 		block = uiLayoutGetBlock(row);
 		uiDefIconButBitS(block, TOG, SCE_SELECT_VERTEX, B_SEL_VERT, ICON_VERTEXSEL,
 		                 0, 0, UI_UNIT_X, UI_UNIT_Y, &em->selectmode, 1.0, 0.0, 0, 0,
-		                 TIP_("Vertex select - Shift-Click for multiple modes"));
+		                 TIP_("Vertex select - Shift-Click for multiple modes, Ctrl-Click contracts selection"));
 		uiDefIconButBitS(block, TOG, SCE_SELECT_EDGE, B_SEL_EDGE, ICON_EDGESEL,
 		                 0, 0, UI_UNIT_X, UI_UNIT_Y, &em->selectmode, 1.0, 0.0, 0, 0,
-		                 TIP_("Edge select - Shift-Click for multiple modes, Ctrl-Click expands selection"));
+		                 TIP_("Edge select - Shift-Click for multiple modes, Ctrl-Click expands/contracts selection"));
 		uiDefIconButBitS(block, TOG, SCE_SELECT_FACE, B_SEL_FACE, ICON_FACESEL,
 		                 0, 0, UI_UNIT_X, UI_UNIT_Y, &em->selectmode, 1.0, 0.0, 0, 0,
 		                 TIP_("Face select - Shift-Click for multiple modes, Ctrl-Click expands selection"));




More information about the Bf-blender-cvs mailing list