Your ROOT_URL in app.ini is http://git.osmesh.ru/ but you are visiting http://91.221.70.94:3000/MOS/OpenBoard/commit/00f1f768d3d28352072467a428b2d1f04509a7e5
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
2 additions and
2 deletions
src/tools/UBGraphicsCompass.cpp
src/tools/UBGraphicsProtractor.cpp
@ -361,7 +361,7 @@ void UBGraphicsCompass::paintAngleDisplay(QPainter *painter)
qreal angle = angleInDegrees ( ) ;
qreal angleValue = mDrawing ? - mSpanAngleInDegrees : angle ;
QString angleText = QString ( " %1 " ) . arg ( angleValue , 0 , ' f ' , 1 ) + " ° " ;
QString angleText = QString ( " %1 " ) . arg ( angleValue , 0 , ' f ' , 1 ) + " ° " ;
painter - > save ( ) ;
painter - > setFont ( font ( ) ) ;
@ -508,7 +508,7 @@ void UBGraphicsProtractor::paintAngleMarker(QPainter *painter)
if ( angle ! = 0 )
{
QString ang = QString ( " %1° " ) . arg ( angle , 0 , ' f ' , 1 ) ;
QString ang = QString ( " %1? ° " ) . arg ( angle , 0 , ' f ' , 1 ) ;
QFont font2 = painter - > font ( ) ;
font2 . setBold ( true ) ;
QFontMetricsF fm2 ( font2 ) ;