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:
authorMartin Poirier <theeth@yahoo.com>2005-06-11 06:17:25 +0400
committerMartin Poirier <theeth@yahoo.com>2005-06-11 06:17:25 +0400
commit9c63b95d34130410ea2f1a3a13541289c226015d (patch)
tree4f998ad1a3995707ade6f2a2a5d59984268e130c /source/blender/src
parentac30fd8b3e4aafe2cd2e009ad9735153b2f7e469 (diff)
Follow up on the Numinput / PET conflict bugfix.
Added Page Up and Page Down as hotkey to increase and decrease PET area of effect.
Diffstat (limited to 'source/blender/src')
-rwxr-xr-xsource/blender/src/transform.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/src/transform.c b/source/blender/src/transform.c
index 262465c0308..b669625c198 100755
--- a/source/blender/src/transform.c
+++ b/source/blender/src/transform.c
@@ -394,6 +394,7 @@ static void transformEvent(unsigned short event, short val) {
}
Trans.redraw= 1;
break;
+ case PAGEUPKEY:
case WHEELDOWNMOUSE:
if(Trans.flag & T_PROP_EDIT) {
Trans.propsize*= 1.1f;
@@ -409,6 +410,7 @@ static void transformEvent(unsigned short event, short val) {
}
Trans.redraw= 1;
break;
+ case PAGEDOWNKEY:
case WHEELUPMOUSE:
if(Trans.flag & T_PROP_EDIT) {
Trans.propsize*= 0.90909090f;