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

Remove polygonItems from their Stroke when added to a StrokesGroup

preferencesAboutTextFull
Craig Watson 9 years ago
parent b1c2d010c1
commit fb6bc855e9
  1. 3
      src/domain/UBGraphicsPolygonItem.cpp

@ -114,6 +114,9 @@ UBGraphicsPolygonItem::~UBGraphicsPolygonItem()
void UBGraphicsPolygonItem::setStrokesGroup(UBGraphicsStrokesGroup *group)
{
if (mStroke)
mStroke->remove(this);
mpGroup = group;
}

Loading…
Cancel
Save