Version: 1.5.9 (using KDE 3.5.3, compiled sources) Compiler: Target: x86_64-linux-gnu OS: Linux (x86_64) release 2.6.13.2 To reproduce: select the 'text' tool. Leave the mode to normal and I used "Sans Serif, 15". Set the opacity in the text-options to 40% Click somewhere in the image and add some text. Press Ok. You will see that text appear twice; ones at coordinate 0,0 and ones where you clicked. Forcing a refresh of the canvas (by moving another window over it) removes the version at 0,0 Not sure if its relevant; I don't use OpenGL.
Fixed.
SVN commit 601460 by rempt: Fix bug 130607 (this has already been forward ported, but I won't commit it. I might even kill the text tool in 2.0 really soon now). CCBUG: 130607 M +2 -1 kis_tool_text.cc --- branches/koffice/1.6/koffice/krita/plugins/tools/defaulttools/kis_tool_text.cc #601459:601460 @@ -131,11 +131,12 @@ layer->setOpacity(m_opacity); layer->setCompositeOp(m_compositeOp); + layer->setVisible(false); Q_INT32 x = QMAX(0, static_cast<int>(e->x() - width/2)); Q_INT32 y = QMAX(0, static_cast<int>(e->y() - height/2)); layer->setX(x); layer->setY(y); - + layer->setVisible(true); layer->setDirty(); if (undoAdapter) {
You need to log in before you can comment on or make changes to this bug.