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

use the thumbnail proxy's getter instead of the documentController's one

preferencesAboutTextFull
Clément Fauconnier 6 years ago
parent afb5b65458
commit 3e219b3259
  1. 2
      src/gui/UBThumbnailWidget.cpp

@ -858,7 +858,7 @@ void UBSceneThumbnailNavigPixmap::mousePressEvent(QGraphicsSceneMouseEvent *even
void UBSceneThumbnailNavigPixmap::deletePage()
{
if(UBApplication::mainWindow->yesNoQuestion(QObject::tr("Remove Page"), QObject::tr("Are you sure you want to remove 1 page from the selected document '%0'?").arg(UBApplication::documentController->selectedDocument()->metaData(UBSettings::documentName).toString()))){
if(UBApplication::mainWindow->yesNoQuestion(QObject::tr("Remove Page"), QObject::tr("Are you sure you want to remove 1 page from the selected document '%0'?").arg(proxy()->metaData(UBSettings::documentName).toString()))){
UBApplication::boardController->deleteScene(sceneIndex());
}
}

Loading…
Cancel
Save