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>2006-11-14 21:13:34 +0300
committerTon Roosendaal <ton@blender.org>2006-11-14 21:13:34 +0300
commitba04e4bceb6e54bc55e1c9257ce3c5c4c2ce58f0 (patch)
treeb6f21012f52fe320f61ca04e8363dbf7c397fabe /source/blender/src/toolbox.c
parent9ab91ab3616f667f39610c4e076644615d2fe632 (diff)
New behaviour for SHIFT+O (set subsurf on/off) or CTRL+0/1/2/3/4 for level.
- Now works on selection of Objects (as do allmost all hotkeys) - If multiple selected have different settings, it sets all the same - Also does subsurf settings within a dupli-group
Diffstat (limited to 'source/blender/src/toolbox.c')
-rw-r--r--source/blender/src/toolbox.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/toolbox.c b/source/blender/src/toolbox.c
index 70e5012b9c6..4ce4045a170 100644
--- a/source/blender/src/toolbox.c
+++ b/source/blender/src/toolbox.c
@@ -1077,7 +1077,7 @@ static void tb_do_mesh(void *arg, int event){
case 2: G.f ^= G_DRAWEDGES; break;
case 3: G.f ^= G_DRAWFACES; break;
case 4: G.f ^= G_DRAWNORMALS; break;
- case 5: flip_subdivison(OBACT, -1); break;
+ case 5: flip_subdivison(-1); break;
}
addqueue(curarea->win, REDRAW, 1);
}