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

Triangle behaviour fix

preferencesAboutTextFull
Anatoly Mihalchenko 13 years ago
parent e82d5d880d
commit cf024b2187
  1. 4
      src/board/UBBoardView.cpp

@ -54,6 +54,7 @@
#include "tools/UBGraphicsCompass.h"
#include "tools/UBGraphicsCache.h"
#include "tools/UBGraphicsTriangle.h"
#include "core/memcheck.h"
@ -425,7 +426,8 @@ UBBoardView::mousePressEvent (QMouseEvent *event)
|| movingItem->type() == UBGraphicsCompass::Type
|| movingItem->type() == UBGraphicsPDFItem::Type
|| movingItem->type() == UBGraphicsPolygonItem::Type
|| movingItem->type() == UBGraphicsCache::Type)
|| movingItem->type() == UBGraphicsCache::Type
|| movingItem->type() == UBGraphicsTriangle::Type)
{
movingItem = NULL;
QGraphicsView::mousePressEvent (event);

Loading…
Cancel
Save