From f12ed164b733f542dbe9478d13189e716092473f Mon Sep 17 00:00:00 2001 From: Matt Ebb Date: Tue, 3 Jul 2007 07:30:42 +0000 Subject: [PATCH] * Added a hotkey (T) for the sculpt mode flatten brush (part of this commmit snuck in the last one) --- source/blender/src/space.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source/blender/src/space.c b/source/blender/src/space.c index b8a1de717e8..8e006111ad9 100644 --- a/source/blender/src/space.c +++ b/source/blender/src/space.c @@ -1409,6 +1409,9 @@ static void winqreadview3dspace(ScrArea *sa, void *spacedata, BWinEvent *evt) case LKEY: sd->brush_type= LAYER_BRUSH; update_prop= 1; break; + case TKEY: + sd->brush_type= FLATTEN_BRUSH; + update_prop= 1; break; /* Symmetry */ case XKEY: sd->symm^= SYMM_X;