Your ROOT_URL in app.ini is http://git.osmesh.ru/ but you are visiting https://git.osmesh.ru/MOS/OpenBoard/commit/9e0239e3c4b086f8e74cd1072f68079e700e0f50?style=split&whitespace=ignore-change
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
2 additions and
0 deletions
src/core/UBPreferencesController.cpp
@ -129,6 +129,8 @@ void UBPreferencesController::wire()
connect ( mPreferencesUI - > useExternalBrowserCheckBox , SIGNAL ( clicked ( bool ) ) , settings - > webUseExternalBrowser , SLOT ( setBool ( bool ) ) ) ;
connect ( mPreferencesUI - > useExternalBrowserCheckBox , SIGNAL ( clicked ( bool ) ) , settings - > webUseExternalBrowser , SLOT ( setBool ( bool ) ) ) ;
connect ( mPreferencesUI - > displayBrowserPageCheckBox , SIGNAL ( clicked ( bool ) ) , settings - > webShowPageImmediatelyOnMirroredScreen , SLOT ( setBool ( bool ) ) ) ;
connect ( mPreferencesUI - > displayBrowserPageCheckBox , SIGNAL ( clicked ( bool ) ) , settings - > webShowPageImmediatelyOnMirroredScreen , SLOT ( setBool ( bool ) ) ) ;
connect ( mPreferencesUI - > swapControlAndDisplayScreensCheckBox , SIGNAL ( clicked ( bool ) ) , settings - > swapControlAndDisplayScreens , SLOT ( setBool ( bool ) ) ) ;
connect ( mPreferencesUI - > swapControlAndDisplayScreensCheckBox , SIGNAL ( clicked ( bool ) ) , UBApplication : : applicationController - > displayManager ( ) , SLOT ( reinitScreens ( bool ) ) ) ;
connect ( mPreferencesUI - > toolbarAtTopRadioButton , SIGNAL ( clicked ( bool ) ) , this , SLOT ( toolbarPositionChanged ( bool ) ) ) ;
connect ( mPreferencesUI - > toolbarAtTopRadioButton , SIGNAL ( clicked ( bool ) ) , this , SLOT ( toolbarPositionChanged ( bool ) ) ) ;
connect ( mPreferencesUI - > toolbarAtBottomRadioButton , SIGNAL ( clicked ( bool ) ) , this , SLOT ( toolbarPositionChanged ( bool ) ) ) ;
connect ( mPreferencesUI - > toolbarAtBottomRadioButton , SIGNAL ( clicked ( bool ) ) , this , SLOT ( toolbarPositionChanged ( bool ) ) ) ;