Your ROOT_URL in app.ini is http://git.osmesh.ru/ but you are visiting https://git.osmesh.ru/MOS/OpenBoard/commit/f8ace64ec1882e76fcc56ca50348e52de85382c0?style=split&whitespace=ignore-change
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
3 additions and
2 deletions
src/domain/UBGraphicsItemDelegate.h
src/tools/UBGraphicsCurtainItemDelegate.cpp
@ -220,6 +220,7 @@ class UBGraphicsItemDelegate : public QObject
virtual ~ UBGraphicsItemDelegate ( ) ;
virtual ~ UBGraphicsItemDelegate ( ) ;
void init ( ) ;
void init ( ) ;
void decorate ( ) ;
virtual bool mousePressEvent ( QGraphicsSceneMouseEvent * event ) ;
virtual bool mousePressEvent ( QGraphicsSceneMouseEvent * event ) ;
virtual bool mouseMoveEvent ( QGraphicsSceneMouseEvent * event ) ;
virtual bool mouseMoveEvent ( QGraphicsSceneMouseEvent * event ) ;
@ -319,7 +320,6 @@ protected slots:
virtual void gotoContentSource ( ) ;
virtual void gotoContentSource ( ) ;
private :
private :
void decorate ( ) ;
void updateFrame ( ) ;
void updateFrame ( ) ;
void updateButtons ( bool showUpdated = false ) ;
void updateButtons ( bool showUpdated = false ) ;
inline void showHideRecurs ( const QVariant & pShow , QGraphicsItem * pItem ) ;
inline void showHideRecurs ( const QVariant & pShow , QGraphicsItem * pItem ) ;
@ -45,7 +45,8 @@ UBGraphicsCurtainItemDelegate::~UBGraphicsCurtainItemDelegate()
void UBGraphicsCurtainItemDelegate : : init ( )
void UBGraphicsCurtainItemDelegate : : init ( )
{
{
UBGraphicsItemDelegate : : init ( ) ;
//UBGraphicsItemDelegate::init();
decorate ( ) ;
mFrame - > hide ( ) ;
mFrame - > hide ( ) ;
mZOrderUpButton - > hide ( ) ;
mZOrderUpButton - > hide ( ) ;
mZOrderDownButton - > hide ( ) ;
mZOrderDownButton - > hide ( ) ;