Your ROOT_URL in app.ini is http://git.osmesh.ru/ but you are visiting http://91.221.70.94:3000/MOS/OpenBoard/commit/f1cb18795312d76378a955f0927a07e7deaeea0b?style=split&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
3 additions and
3 deletions
src/domain/UBGraphicsItemDelegate.cpp
@ -195,10 +195,10 @@ QVariant UBGraphicsItemDelegate::itemChange(QGraphicsItem::GraphicsItemChange ch
if ( ( change = = QGraphicsItem : : ItemSelectedHasChanged
if ( ( change = = QGraphicsItem : : ItemSelectedHasChanged
| | change = = QGraphicsItem : : ItemPositionHasChanged
| | change = = QGraphicsItem : : ItemPositionHasChanged
| | change = = QGraphicsItem : : ItemTransformHasChanged )
| | change = = QGraphicsItem : : ItemTransformHasChanged )
& & mDelegated - > scene ( ) )
& & mDelegated - > scene ( )
{
& & UBApplication : : boardController )
{
mAntiScaleRatio = 1 / ( UBApplication : : boardController - > systemScaleFactor ( ) * UBApplication : : boardController - > currentZoom ( ) ) ;
mAntiScaleRatio = 1 / ( UBApplication : : boardController - > systemScaleFactor ( ) * UBApplication : : boardController - > currentZoom ( ) ) ;
positionHandles ( ) ;
positionHandles ( ) ;
}
}