Your ROOT_URL in app.ini is http://git.osmesh.ru/ but you are visiting http://91.221.70.94:3000/MOS/OpenBoard/commit/62a5ad33bd5526a093175a3cdf51730c587464d4?style=unified&whitespace=ignore-change
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
11 additions and
4 deletions
resources/forms/preferences.ui
src/core/UBApplication.cpp
@ -82,7 +82,7 @@
<item row="1" column="0">
<widget class="QTabWidget" name="mainTabWidget">
<property name="currentIndex">
<number>7 </number>
<number>0 </number>
</property>
<widget class="QWidget" name="displayTab">
<attribute name="title">
@ -387,6 +387,11 @@
<string>Desktop</string>
</property>
</item>
<item>
<property name="text">
<string>Document</string>
</property>
</item>
</widget>
</item>
<item row="0" column="2">
@ -351,10 +351,12 @@ int UBApplication::exec(const QString& pFileToImport)
if ( pFileToImport . length ( ) > 0 )
UBApplication : : applicationController - > importFile ( pFileToImport ) ;
if ( UBSettings : : settings ( ) - > appStartMode - > get ( ) . toInt ( ) )
applicationController - > showDesktop ( ) ;
else
if ( UBSettings : : settings ( ) - > appStartMode - > get ( ) . toInt ( ) = = 0 )
applicationController - > showBoard ( ) ;
else if ( UBSettings : : settings ( ) - > appStartMode - > get ( ) . toInt ( ) = = 1 )
applicationController - > showDesktop ( ) ;
else if ( UBSettings : : settings ( ) - > appStartMode - > get ( ) . toInt ( ) = = 2 )
applicationController - > showDocument ( ) ;
emit UBDrawingController : : drawingController ( ) - > colorPaletteChanged ( ) ;