Your ROOT_URL in app.ini is http://git.osmesh.ru/ but you are visiting https://git.osmesh.ru/MOS/OpenBoard/commit/3c44bfb94a46ac004a3ea340dad3761ff480b1d9?style=unified&whitespace=ignore-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
0 additions and
5 deletions
src/board/UBBoardView.cpp
src/domain/UBSelectionFrame.cpp
@ -1083,7 +1083,6 @@ void UBBoardView::mouseMoveEvent (QMouseEvent *event)
// QTime mouseMoveTime = QTime::currentTime();
if ( ! mIsDragInProgress & & ( ( mapToScene ( event - > pos ( ) ) - mLastPressedMousePos ) . manhattanLength ( ) < QApplication : : startDragDistance ( ) ) ) {
qDebug ( ) < < " mouse move event canceled " ;
return ;
}
@ -243,9 +243,6 @@ void UBSelectionFrame::mouseReleaseEvent(QGraphicsSceneMouseEvent */*event*/)
void UBSelectionFrame : : onZoomChanged ( qreal pZoom )
{
qDebug ( ) < < " Pzoom " < < pZoom ;
qDebug ( ) < < " Board current zoom " < < UBApplication : : boardController - > currentZoom ( ) ;
qDebug ( ) < < " UBApplication::boardController->systemScaleFactor() " < < UBApplication : : boardController - > systemScaleFactor ( ) ;
mAntiscaleRatio = 1 / ( UBApplication : : boardController - > systemScaleFactor ( ) * pZoom ) ;
}
@ -458,7 +455,6 @@ QList<QGraphicsItem*> UBSelectionFrame::sortedByZ(const QList<QGraphicsItem *> &
QList < DelegateButton * > UBSelectionFrame : : buttonsForFlags ( UBGraphicsFlags fls ) {
qDebug ( ) < < " buttons for flags " < < QString : : number ( ( int ) fls , 2 ) ;
QList < DelegateButton * > result ;
if ( ! mDeleteButton ) {