Your ROOT_URL in app.ini is http://git.osmesh.ru/ but you are visiting http://91.221.70.94:3000/MOS/OpenBoard/commit/afb5b65458d9173f35cb811a5e61b9c62a2f0e69?style=split&whitespace=ignore-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
9 additions and
7 deletions
src/document/UBDocumentController.cpp
@ -1451,7 +1451,8 @@ void UBDocumentTreeView::dropEvent(QDropEvent *event)
docModel - > setHighLighted ( QModelIndex ( ) ) ;
docModel - > setHighLighted ( QModelIndex ( ) ) ;
}
}
else
{
if ( targetIsInTrash )
if ( targetIsInTrash )
{
{
if ( ! UBApplication : : mainWindow - > yesNoQuestion ( tr ( " Remove Item " ) , tr ( " Are you sure you want to remove the selected item(s) ? " ) ) )
if ( ! UBApplication : : mainWindow - > yesNoQuestion ( tr ( " Remove Item " ) , tr ( " Are you sure you want to remove the selected item(s) ? " ) ) )
@ -1461,6 +1462,7 @@ void UBDocumentTreeView::dropEvent(QDropEvent *event)
} else {
} else {
docModel - > moveIndexes ( dropIndex , targetIndex ) ;
docModel - > moveIndexes ( dropIndex , targetIndex ) ;
}
}
}
expand ( proxy - > mapFromSource ( targetIndex ) ) ;
expand ( proxy - > mapFromSource ( targetIndex ) ) ;