Your ROOT_URL in app.ini is http://git.osmesh.ru/ but you are visiting https://git.osmesh.ru/MOS/OpenBoard/commit/67522011547617a272cf2cdb3d23ff92ea5d750c?style=unified&whitespace=ignore-change
You should set ROOT_URL correctly, otherwise the web may not work correctly.
6 changed files with
8 additions and
0 deletions
src/domain/UBGraphicsMediaItem.cpp
src/domain/UBGraphicsPDFItem.cpp
src/domain/UBGraphicsPixmapItem.cpp
src/domain/UBGraphicsSvgItem.cpp
src/domain/UBGraphicsTextItem.cpp
src/domain/UBGraphicsWidgetItem.cpp
@ -275,6 +275,8 @@ void UBGraphicsMediaItem::copyItemParameters(UBItem *copy) const
cp - > setSourceUrl ( this - > sourceUrl ( ) ) ;
cp - > resize ( this - > size ( ) ) ;
cp - > setZValue ( this - > zValue ( ) ) ;
connect ( UBApplication : : boardController , SIGNAL ( activeSceneChanged ( ) ) , cp , SLOT ( activeSceneChanged ( ) ) ) ;
// TODO UB 4.7 complete all members
}
@ -122,6 +122,7 @@ void UBGraphicsPDFItem::copyItemParameters(UBItem *copy) const
cp - > setFlag ( QGraphicsItem : : ItemIsSelectable , true ) ;
cp - > setData ( UBGraphicsItemData : : ItemLayerType , this - > data ( UBGraphicsItemData : : ItemLayerType ) ) ;
cp - > setSourceUrl ( this - > sourceUrl ( ) ) ;
cp - > setZValue ( this - > zValue ( ) ) ;
}
}
@ -156,6 +156,8 @@ void UBGraphicsPixmapItem::copyItemParameters(UBItem *copy) const
cp - > setData ( UBGraphicsItemData : : ItemLayerType , this - > data ( UBGraphicsItemData : : ItemLayerType ) ) ;
cp - > setData ( UBGraphicsItemData : : ItemLocked , this - > data ( UBGraphicsItemData : : ItemLocked ) ) ;
cp - > setSourceUrl ( this - > sourceUrl ( ) ) ;
cp - > setZValue ( this - > zValue ( ) ) ;
}
}
@ -180,6 +180,7 @@ void UBGraphicsSvgItem::copyItemParameters(UBItem *copy) const
cp - > setData ( UBGraphicsItemData : : ItemLayerType , this - > data ( UBGraphicsItemData : : ItemLayerType ) ) ;
cp - > setData ( UBGraphicsItemData : : ItemLocked , this - > data ( UBGraphicsItemData : : ItemLocked ) ) ;
cp - > setSourceUrl ( this - > sourceUrl ( ) ) ;
cp - > setZValue ( this - > zValue ( ) ) ;
}
}
@ -280,6 +280,7 @@ void UBGraphicsTextItem::copyItemParameters(UBItem *copy) const
cp - > setTextHeight ( this - > textHeight ( ) ) ;
cp - > setSourceUrl ( this - > sourceUrl ( ) ) ;
cp - > setZValue ( this - > zValue ( ) ) ;
}
}
@ -744,6 +744,7 @@ void UBGraphicsAppleWidgetItem::copyItemParameters(UBItem *copy) const
}
cp - > setSourceUrl ( this - > sourceUrl ( ) ) ;
cp - > setZValue ( this - > zValue ( ) ) ;
}
}