Your ROOT_URL in app.ini is http://git.osmesh.ru/ but you are visiting http://91.221.70.94:3000/MOS/OpenBoard/commit/bd41d79731928e20ad85936366a05651a573d59d?style=unified&whitespace=show-all You should set ROOT_URL correctly, otherwise the web may not work correctly.

fixed an issue where long time press could be triggered if the 'persist document' operations would take longer than the timeout defined for longPressTimer

preferencesAboutTextFull
Clément Fauconnier 4 years ago
parent 74c7b84a5c
commit bd41d79731
  1. 3
      src/gui/UBDocumentNavigator.cpp

@ -333,7 +333,6 @@ void UBDocumentNavigator::mousePressEvent(QMouseEvent *event)
if (!event->isAccepted())
{
mLongPressTimer.start();
mLastPressedMousePos = event->pos();
mLastClickedThumbnail = clickedThumbnail(mLastPressedMousePos);
@ -345,6 +344,8 @@ void UBDocumentNavigator::mousePressEvent(QMouseEvent *event)
UBApplication::boardController->setActiveDocumentScene(mLastClickedThumbnail->sceneIndex());
UBApplication::boardController->centerOn(UBApplication::boardController->activeScene()->lastCenter());
}
mLongPressTimer.start();
}
}

Loading…
Cancel
Save