Skip to content
Snippets Groups Projects
Commit aeb3e92f authored by mae's avatar mae
Browse files

off by one

done with thorbjorn
parent d5d6ba7b
No related branches found
No related tags found
No related merge requests found
......@@ -230,7 +230,7 @@ QPainterPath TextEditorOverlay::createSelectionPath(const QTextCursor &begin, co
selection.at(i+1).right()) + margin;
points += QPointF(x+1, selection.at(i).top());
points += QPointF(x+1, selection.at(i).bottom()+1);
points += QPointF(x+1, selection.at(i).bottom());
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment