Your ROOT_URL in app.ini is http://git.osmesh.ru/ but you are visiting http://91.221.70.94:3000/MOS/OpenBoard/commit/59ae73c06e2b52f9585fa2f68b8e13493bbf1c53?style=unified&whitespace=ignore-eol
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
5 additions and
4 deletions
src/board/UBBoardPaletteManager.cpp
src/desktop/UBDesktopAnnotationController.cpp
src/gui/UBFloatingPalette.cpp
@ -132,7 +132,7 @@ void UBBoardPaletteManager::setupPalettes()
if ( UBPlatformUtils : : hasVirtualKeyboard ( ) )
{
mKeyboardPalette = UBKeyboardPalette : : create ( 0 ) ;
mKeyboardPalette - > setParent ( mContainer ) ;
//mKeyboardPalette->setParent(mContainer);
}
mZoomPalette = new UBZoomPalette ( mContainer ) ;
@ -73,7 +73,7 @@ UBDesktopAnnotationController::UBDesktopAnnotationController(QObject *parent)
mTransparentDrawingView - > setAttribute ( Qt : : WA_TranslucentBackground , true ) ;
// !!!! Should be included into Windows after QT recompilation
# ifdef Q_WS_MAC
//mTransparentDrawingView->setAttribute(Qt::WA_MacNoShadow, true);
mTransparentDrawingView - > setAttribute ( Qt : : WA_MacNoShadow , true ) ;
# endif
mTransparentDrawingView - > setWindowFlags ( Qt : : FramelessWindowHint | Qt : : WindowStaysOnTopHint | Qt : : Window ) ;
mTransparentDrawingView - > setCacheMode ( QGraphicsView : : CacheNone ) ;
@ -33,8 +33,9 @@ UBFloatingPalette::UBFloatingPalette(Qt::Corner position, QWidget *parent)
setAttribute ( Qt : : WA_MacAlwaysShowToolWindow ) ;
# endif
# ifdef Q_WS_MAC
//setAttribute(Qt::WA_MacNonActivatingToolWindow);
//setAttribute(Qt::WA_MacNoShadow);
setAttribute ( Qt : : WA_MacAlwaysShowToolWindow ) ;
setAttribute ( Qt : : WA_MacNonActivatingToolWindow ) ;
setAttribute ( Qt : : WA_MacNoShadow ) ;
# endif
}