Glyn Edwards wrote:
>>Pressure sensitivity no longer works in the gimp version 2.2 and I don't
>>know why.
>>
>>
>Fixed! The pressure was stuck at zero because of a leftover from the old
>pressure code. The gaiptek custom curves now work nicely and change how
>the pen reacts. I haven't tested them for mapping accuracy but that
>shouldn't be too hard.
>
>--- ../cvs/xserver_input_driver/xf86Aiptek.c 2005-11-20
>22:04:41.000000000 +0000
>+++ xf86Aiptek.c 2005-11-21 17:51:20.093608232 +0000
>@@ -3182,7 +3182,7 @@
> x = common->currentValues.x - common->previousValues.x;
> y = common->currentValues.y - common->previousValues.y;
> }
>- z = common->currentValues.smooth_z;
>+ z = common->currentValues.z;
> xTilt = common->currentValues.xTilt;
> yTilt = common->currentValues.yTilt;
> wheel = common->currentValues.wheel;
>
>
>
Done.
smooth_z is no longer used, so deleted it from the struct, too. Let's
add a new feature to celebrate!
|