Your ROOT_URL in app.ini is http://git.osmesh.ru/ but you are visiting http://91.221.70.94:3000/MOS/OpenBoard/commit/7658de92406c4f5d0a94bb99f6b7d112d99517f6?style=split&whitespace=ignore-eol
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
8 additions and
2 deletions
src/adaptors/UBSvgSubsetAdaptor.cpp
@ -2174,8 +2174,14 @@ void UBSvgSubsetAdaptor::UBSvgSubsetReader::graphicsItemFromSvg(QGraphicsItem* g
QStringRef ubZValue = mXmlReader . attributes ( ) . value ( mNamespaceUri , " z-value " ) ;
QStringRef ubZValue = mXmlReader . attributes ( ) . value ( mNamespaceUri , " z-value " ) ;
if ( ! ubZValue . isNull ( ) )
if ( ! ubZValue . isNull ( ) ) {
UBGraphicsItem : : assignZValue ( gItem , ubZValue . toString ( ) . toFloat ( ) ) ;
// FIX
// In the firsts zvalue implemenations values outside the boudaries have been used.
// No boundaries specified on documentation but to small values are not correctly handled.
qreal zValue = ubZValue . toString ( ) . toFloat ( ) ;
while ( zValue < - 999999 ) zValue / = 10. ;
UBGraphicsItem : : assignZValue ( gItem , zValue ) ;
}
UBItem * ubItem = dynamic_cast < UBItem * > ( gItem ) ;
UBItem * ubItem = dynamic_cast < UBItem * > ( gItem ) ;