Your ROOT_URL in app.ini is http://git.osmesh.ru/ but you are visiting http://91.221.70.94:3000/MOS/OpenBoard/commit/49c4e4ac349e5b5696b4f002ffde4cb7158b5f00?style=split&whitespace=ignore-change
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
3 additions and
0 deletions
src/domain/UBGraphicsAudioItem.cpp
src/domain/UBGraphicsVideoItem.cpp
@ -93,6 +93,7 @@ UBItem* UBGraphicsAudioItem::deepCopy() const
QUrl audioUrl = this - > mediaFileUrl ( ) ;
QUrl audioUrl = this - > mediaFileUrl ( ) ;
UBGraphicsAudioItem * copy = new UBGraphicsAudioItem ( audioUrl , parentItem ( ) ) ;
UBGraphicsAudioItem * copy = new UBGraphicsAudioItem ( audioUrl , parentItem ( ) ) ;
connect ( UBApplication : : boardController , SIGNAL ( activeSceneChanged ( ) ) , copy , SLOT ( activeSceneChanged ( ) ) ) ;
copy - > setPos ( this - > pos ( ) ) ;
copy - > setPos ( this - > pos ( ) ) ;
// copy->setZValue(this->zValue());
// copy->setZValue(this->zValue());
@ -67,6 +67,8 @@ UBItem* UBGraphicsVideoItem::deepCopy() const
UBGraphicsVideoItem * copy = new UBGraphicsVideoItem ( videoUrl , parentItem ( ) ) ;
UBGraphicsVideoItem * copy = new UBGraphicsVideoItem ( videoUrl , parentItem ( ) ) ;
connect ( UBApplication : : boardController , SIGNAL ( activeSceneChanged ( ) ) , copy , SLOT ( activeSceneChanged ( ) ) ) ;
copy - > setPos ( this - > pos ( ) ) ;
copy - > setPos ( this - > pos ( ) ) ;
// copy->setZValue(this->zValue());
// copy->setZValue(this->zValue());
UBGraphicsItem : : assignZValue ( copy , this - > zValue ( ) ) ;
UBGraphicsItem : : assignZValue ( copy , this - > zValue ( ) ) ;