Your ROOT_URL in app.ini is http://git.osmesh.ru/ but you are visiting http://91.221.70.94:3000/MOS/OpenBoard/commit/887aff4898d977274a834aba9d4e82afcf25adbe You should set ROOT_URL correctly, otherwise the web may not work correctly.

fixed issue 19

preferencesAboutTextFull
Claudio Valerio 12 years ago
parent 03f6b123d8
commit 887aff4898
  1. 2
      src/board/UBBoardView.cpp

@ -550,7 +550,7 @@ Here we determines cases when items should to get mouse press event at pressing
case UBGraphicsPixmapItem::Type:
case UBGraphicsTextItem::Type:
if (currentTool == UBStylusTool::Play)
return true;
return false;
if ((currentTool == UBStylusTool::Selector) && item->isSelected())
return true;
if ((currentTool == UBStylusTool::Selector) && item->parentItem() && item->parentItem()->isSelected())

Loading…
Cancel
Save