That&#39;s the solution that makes the most sense for now, it doesn&#39;t remove any functionality from the brush, it only prevents users from encountering buggy behavior by default. If they come from Photoshop or Gimp, they will already expect the smudge brush to not change size based on pressure, so they&#39;re not seeing anything out of the usual.<br>
<br><div class="gmail_quote">On Sat, Dec 11, 2010 at 8:22 AM, Boudewijn Rempt <span dir="ltr">&lt;<a href="mailto:boud@valdyas.org">boud@valdyas.org</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
I want to commit this patch to 2.3: it set the pressure size option to off by default for smudge, which solves the added-black bug when smudging with the tablet. I did not remove the entire option, since users might still want to use it.<br>

<br>
Index: kis_smudgeop_settings_widget.cpp<br>
===================================================================<br>
--- kis_smudgeop_settings_widget.cpp    (revision 1205503)<br>
+++ kis_smudgeop_settings_widget.cpp    (working copy)<br>
@@ -36,7 +36,9 @@<br>
 {<br>
     setObjectName(&quot;brush option widget&quot;);<br>
<br>
-    addPaintOpOption(new KisCurveOptionWidget(new KisPressureSizeOption()));<br>
+    KisPressureSizeOption *sizeOption = new KisPressureSizeOption();<br>
+    sizeOption-&gt;setChecked(false);<br>
+    addPaintOpOption(new KisCurveOptionWidget(sizeOption));<br>
     addPaintOpOption(new KisCurveOptionWidget(new KisPressureOpacityOption()));<br>
     addPaintOpOption(new KisCurveOptionWidget(new KisPressureDarkenOption));<br>
     addPaintOpOption(new KisPressureRateOptionWidget());<br>
boud@valdis:~/kde/src/svn/branches/2.3/koffice/krita/plugi<br>
<font color="#888888">--<br>
Boudewijn Rempt | <a href="http://www.valdyas.org" target="_blank">http://www.valdyas.org</a>, <a href="http://www.krita.org" target="_blank">http://www.krita.org</a><br>
_______________________________________________<br>
kimageshop mailing list<br>
<a href="mailto:kimageshop@kde.org">kimageshop@kde.org</a><br>
<a href="https://mail.kde.org/mailman/listinfo/kimageshop" target="_blank">https://mail.kde.org/mailman/listinfo/kimageshop</a><br>
</font></blockquote></div><br>