Your ROOT_URL in app.ini is http://git.osmesh.ru/ but you are visiting http://91.221.70.94:3000/MOS/OpenBoard/commit/618ed4dfb08db85aee17379037b9d2b0466fa897?style=unified&whitespace=ignore-change You should set ROOT_URL correctly, otherwise the web may not work correctly.

checked variable to avoid segmentation fault

preferencesAboutTextFull
-f 11 years ago
parent e53c68eb92
commit 618ed4dfb0
  1. 2
      src/board/UBBoardView.cpp

@ -829,7 +829,7 @@ void UBBoardView::handleItemMouseMove(QMouseEvent *event)
// a cludge for terminate moving of w3c widgets.
// in some cases w3c widgets catches mouse move and doesn't sends that events to web page,
// at simple - in google map widget - mouse move events doesn't comes to web page from rectangle of wearch bar on bottom right corner of widget.
if (mWidgetMoved && UBGraphicsW3CWidgetItem::Type == movingItem->type())
if (movingItem && mWidgetMoved && UBGraphicsW3CWidgetItem::Type == movingItem->type())
movingItem->setPos(posBeforeMove);
}
}

Loading…
Cancel
Save