Your ROOT_URL in app.ini is http://git.osmesh.ru/ but you are visiting http://91.221.70.94:3000/MOS/OpenBoard/commit/c2e16e5c878fed1f14778317ab1daae3de39c0e7?style=split&whitespace=ignore-all You should set ROOT_URL correctly, otherwise the web may not work correctly.

fixed a bug where erasing a pen stroke with simplifyPenStrokes=true ereased every overlapping polygons of it

preferencesAboutTextFull
Clément Fauconnier 8 years ago
parent ad4eec200c
commit c2e16e5c87
  1. 2
      src/domain/UBGraphicsScene.cpp

@ -1024,7 +1024,7 @@ void UBGraphicsScene::eraseLineTo(const QPointF &pEndPoint, const qreal &pWidth)
} }
else if (eraserPath.intersects(itemPainterPath)) else if (eraserPath.intersects(itemPainterPath))
{ {
itemPainterPath.setFillRule(Qt::WindingFill);
QPainterPath newPath = itemPainterPath.subtracted(eraserPath); QPainterPath newPath = itemPainterPath.subtracted(eraserPath);
#pragma omp critical #pragma omp critical
{ {

Loading…
Cancel
Save