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:
authorJohnny Matthews <johnny.matthews@gmail.com>2004-03-10 01:00:51 +0300
committerJohnny Matthews <johnny.matthews@gmail.com>2004-03-10 01:00:51 +0300
commit0ab4e6e503fb3d72dfb680c728ef9e3b6937364c (patch)
treec670e5feb477bcbe13add5b229317dba6b987c7d /source/blender/src/cursors.c
parent3081f4a6355b495f167151fb269dd16fa4f9f24e (diff)
Added Activator Code for a Loop select rotation
Rotation Current;y goes like this in editmode... alt-b : vertex loop select alt-b : face loop select alt-b : off I also removed the console output for changing to small cursor.
Diffstat (limited to 'source/blender/src/cursors.c')
-rw-r--r--source/blender/src/cursors.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/src/cursors.c b/source/blender/src/cursors.c
index 1991f54c881..bc720b28961 100644
--- a/source/blender/src/cursors.c
+++ b/source/blender/src/cursors.c
@@ -110,7 +110,7 @@ void SetBlenderCursor(short curs){
set_cursor(CURSOR_STD);
}
else if ( (U.curssize==0) || (BlenderCursor[curs]->big_bm == NULL) ) {
- printf("setting small cursor\n");
+ /*printf("setting small cursor\n");*/
GHOST_SetCustomCursorShapeEx(win->ghostwin,
BlenderCursor[curs]->small_bm, BlenderCursor[curs]->small_mask,
BlenderCursor[curs]->small_sizex,BlenderCursor[curs]->small_sizey,
@@ -119,7 +119,7 @@ void SetBlenderCursor(short curs){
);
}
else {
- printf("setting big cursor\n");
+ /*printf("setting big cursor\n");*/
GHOST_SetCustomCursorShapeEx(win->ghostwin,
BlenderCursor[curs]->big_bm, BlenderCursor[curs]->big_mask,
BlenderCursor[curs]->big_sizex,BlenderCursor[curs]->big_sizey,