Stefan Schimanski wrote:
Ok, makes sense. The character then entered should be with the font of the character at that position.
Stefan --- once you're at it, should Text2.cpp:768 (in setCurrentFont) be changed:
- if ((pos > 0 && cur.boundary()) || pos == cur.lastpos())
--pos;
+ if (pos > 0 && (cur.boundary() || pos == cur.lastpos()))
--pos;
José: what do you think? Stefan
