Your ROOT_URL in app.ini is http://git.osmesh.ru/ but you are visiting http://91.221.70.94:3000/MOS/OpenBoard/commit/0264852feb2bd5d71e7631c3feac6609f40b0627?style=unified&whitespace=ignore-eol
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
5 additions and
5 deletions
src/tools/UBGraphicsTriangle.cpp
@ -802,6 +802,7 @@ void UBGraphicsTriangle::hoverLeaveEvent(QGraphicsSceneHoverEvent *event)
mVFlipSvgItem - > setVisible ( false ) ;
mHFlipSvgItem - > setVisible ( false ) ;
mRotateSvgItem - > setVisible ( false ) ;
UBDrawingController : : drawingController ( ) - > mActiveRuler = NULL ;
event - > accept ( ) ;
update ( ) ;
}
@ -824,21 +825,20 @@ void UBGraphicsTriangle::hoverMoveEvent(QGraphicsSceneHoverEvent *event)
else if ( closeButtonRect ( ) . contains ( event - > pos ( ) ) )
setCursor ( closeCursor ( ) ) ;
else if ( hFlipRect ( ) . contains ( event - > pos ( ) )
| | vFlipRect ( ) . contains ( event - > pos ( ) ) )
setCursor ( flipCursor ( ) ) ;
| | vFlipRect ( ) . contains ( event - > pos ( ) ) )
setCursor ( flipCursor ( ) ) ;
else if ( rotateRect ( ) . contains ( event - > pos ( ) ) )
setCursor ( rotateCursor ( ) ) ;
else
setCursor ( moveCursor ( ) ) ;
event - > accept ( ) ;
} else if ( UBDrawingController : : drawingController ( ) - > isDrawingTool ( ) ) {
event - > accept ( ) ;
}
}
void UBGraphicsTriangle : : StartLine ( const QPointF & scenePos , qreal width )
{
qDebug ( ) < < " morientation " < < mOrientation ;
//qDebug() << "triangle rect()" << rect();
QPointF itemPos = mapFromScene ( scenePos ) ;
qreal y ;