Version: (using KDE KDE 3.5.6) Installed from: Ubuntu Packages OS: Linux Whenever I draw a brushstroke using wacom at full pressure, I can clearly see the individual stamps that comprise the stroke, even if spacing is set to 0. Decreasing pressure mitigates the issue, and at lower pressures the spacing is fine. Spacing seems to increase with brush pressure. Lines drawn with mouse are fine.
Not sure what's going on here, since I cannot reproduce it. Do you have any special settings for your tablet in your xorg.conf to modify the pressure curve?
Nothing special, but here is the relevant xorg.conf section anyway: (I had some stuff that wasn't in your example xorg.conf, which I commented out for testing, but even with the following config I still get the spacing issue.) Section "InputDevice" Driver "wacom" Identifier "stylus" Option "Device" "/dev/input/wacom" # Change to # /dev/input/event # for USB Option "Type" "stylus" # Option "USB" "on" # Option "Twinview" "horizontal" # Option "ScreenNo" "2" EndSection Section "InputDevice" Driver "wacom" Identifier "eraser" Option "Device" "/dev/input/wacom" # Change to # /dev/input/event # for USB Option "Type" "eraser" #Option "USB" "on" EndSection Section "InputDevice" Driver "wacom" Identifier "cursor" Option "Device" "/dev/input/wacom" # Change to # /dev/input/event # for USB Option "Type" "cursor" # Option "USB" "on" EndSection Section "InputDevice" Driver "wacom" Identifier "pad" Option "Device" "/dev/input/wacom" # Change to # /dev/input/event # for USB Option "Type" "pad" # Option "USB" "on" EndSection
What's the type of your tablet? Is it serial or usb?
I can reproduce with a Wacom Intuos3. But to see it clearly, I need to increase the brush size.
Fixed in 1.6 branch; however, it's not exactly a clean fix. For 2.0 we will have to make sure the line between event points is drawn by the paintop, not the brush tool.
Cyrille, you have moved the paintline to the paintop -- is this bug now finished?
Nope, Cyrille hasn't fixed it yet -- I'll do that.
SVN commit 679373 by rempt: BUG: 144771 Cyrille's changes did make it easier to fix, after all. This should be correct, but it needs testing once I've got my tablet working again. M +2 -2 image/kis_painter.cc M +4 -3 image/kis_paintop.cc M +56 -56 image/kis_paintop.h M +21 -0 plugins/paintops/defaultpaintops/kis_brushop.cc M +4 -0 plugins/paintops/defaultpaintops/kis_brushop.h M +72 -72 ui/kis_tool_freehand.cc