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

fixed problem with widgets drop down list

preferencesAboutTextFull
Claudio Valerio 12 years ago
parent 5b6f4a4821
commit 02be812b74
  1. 3
      src/board/UBBoardView.cpp
  2. 2
      src/document/UBDocumentController.h

@ -599,6 +599,9 @@ Here we determines cases when items should to get mouse press event at pressing
case QGraphicsWebView::Type: case QGraphicsWebView::Type:
return true; return true;
case QGraphicsProxyWidget::Type:
return false;
case UBGraphicsWidgetItem::Type: case UBGraphicsWidgetItem::Type:
if (currentTool == UBStylusTool::Selector && item->parentItem() && item->parentItem()->isSelected()) if (currentTool == UBStylusTool::Selector && item->parentItem() && item->parentItem()->isSelected())
return true; return true;

@ -50,7 +50,7 @@ class UBDocumentToolsPalette;
class UBDocumentController : public UBDocumentContainer class UBDocumentController : public UBDocumentContainer
{ {
Q_OBJECT; Q_OBJECT
public: public:
UBDocumentController(UBMainWindow* mainWindow); UBDocumentController(UBMainWindow* mainWindow);

Loading…
Cancel
Save