Your ROOT_URL in app.ini is http://git.osmesh.ru/ but you are visiting http://91.221.70.94:3000/MOS/OpenBoard/commit/83b8cd7814be697c370bccb926e2e8bd162d27ee
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
9 additions and
1 deletions
src/domain/UBGraphicsDelegateFrame.cpp
src/tools/UBGraphicsCurtainItemDelegate.cpp
src/tools/UBGraphicsCurtainItemDelegate.h
@ -544,7 +544,6 @@ void UBGraphicsDelegateFrame::mouseReleaseEvent(QGraphicsSceneMouseEvent *event)
if ( isResizing ( ) ) {
mResizing = false ;
}
mDelegate - > setButtonsVisible ( true ) ;
}
@ -40,6 +40,8 @@ void UBGraphicsCurtainItemDelegate::init()
{
UBGraphicsItemDelegate : : init ( ) ;
mFrame - > hide ( ) ;
mZOrderUpButton - > hide ( ) ;
mZOrderDownButton - > hide ( ) ;
}
@ -87,6 +89,12 @@ QVariant UBGraphicsCurtainItemDelegate::itemChange(QGraphicsItem::GraphicsItemCh
return UBGraphicsItemDelegate : : itemChange ( change , value ) ;
}
void UBGraphicsCurtainItemDelegate : : positionHandles ( )
{
UBGraphicsItemDelegate : : positionHandles ( ) ;
mZOrderUpButton - > hide ( ) ;
mZOrderDownButton - > hide ( ) ;
}
void UBGraphicsCurtainItemDelegate : : remove ( bool checked , bool canUndo )
{
@ -38,6 +38,7 @@ class UBGraphicsCurtainItemDelegate : public UBGraphicsItemDelegate
virtual bool mousePressEvent ( QGraphicsSceneMouseEvent * event ) ;
virtual QVariant itemChange ( QGraphicsItem : : GraphicsItemChange change , const QVariant & value ) ;
virtual void positionHandles ( ) ;
public slots :