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
path: root/source
diff options
context:
space:
mode:
authorMatt Ebb <matt@mke3.net>2008-02-04 07:20:55 +0300
committerMatt Ebb <matt@mke3.net>2008-02-04 07:20:55 +0300
commit97f28fbbd08d86a5756f846f37f06fe6e94fb140 (patch)
treeb95c7feb63dda32a6e23ffd2680962d93582eaa7 /source
parent5faa2e63a1b19a4ed539364e4a4f35ba500361f5 (diff)
* Made the tablet pressure value default to 1.0 when not using
a tablet, rather than 0.0. This might help ease some misbehaviour people have reported, especially in sculpt.
Diffstat (limited to 'source')
-rw-r--r--source/blender/src/ghostwinlay.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/ghostwinlay.c b/source/blender/src/ghostwinlay.c
index 597a23a20d7..87316e8e3c5 100644
--- a/source/blender/src/ghostwinlay.c
+++ b/source/blender/src/ghostwinlay.c
@@ -508,7 +508,7 @@ static void update_tablet_data(Window *win, Window *ghostwin) {
win->ytilt = td->Ytilt;
} else {
win->activedevice = DEV_MOUSE;
- win->pressure = 0.0;
+ win->pressure = 1.0;
win->xtilt = win->ytilt = 0.0;
}
}