Your ROOT_URL in app.ini is http://git.osmesh.ru/ but you are visiting http://91.221.70.94:3000/MOS/OpenBoard/commit/31a814360a74eebe2e2e0b0f792e89328a79a86d?style=unified&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
6 additions and
2 deletions
src/board/UBBoardController.cpp
src/core/UBApplication.cpp
src/frameworks/UBPlatformUtils_win.cpp
@ -1233,11 +1233,12 @@ void UBBoardController::setActiveDocumentScene(UBDocumentProxy* pDocumentProxy,
if ( documentChange )
{
emit activeDocumentChanged ( ) ;
emit setDocOnPageNavigator ( pDocumentProxy ) ;
UBGraphicsTextItem : : lastUsedTextColor = QColor ( ) ;
}
// Notify the navigator palette that the document has changed
emit setDocOnPageNavigator ( pDocumentProxy ) ;
//emit setDocOnPageNavigator(pDocumentProxy);
if ( sceneChange )
{
@ -235,10 +235,12 @@ void UBApplication::setupTranslator(QString forcedLanguage)
mQtGuiTranslator - > load ( UBPlatformUtils : : translationPath ( QString ( " qt_ " ) , language ) ) ;
if ( mQtGuiTranslator ) {
if ( ! mQtGuiTranslator - > isEmpty ( ) ) {
// checked because this translation could be not available
installTranslator ( mQtGuiTranslator ) ;
}
else
qDebug ( ) < < " Qt gui translation in " < < language < < " are not available " ;
}
@ -20,6 +20,7 @@
# include <windows.h>
# include <shellapi.h>
# include "frameworks/UBFileSystemUtils.h"
# include "core/memcheck.h"
void UBPlatformUtils : : init ( )