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

Never move UBFeatures outside the UBFeaturesModel

preferencesAboutTextFull
Ilia Ryabokon 13 years ago
parent 361191031e
commit c96e44432d
  1. 5
      src/board/UBBoardView.cpp

@ -1366,6 +1366,11 @@ void UBBoardView::dropEvent (QDropEvent *event)
event->acceptProposedAction();
}
}
//prevent features in UBFeaturesWidget deletion from the model when event is processing inside
//Qt base classes
if (event->dropAction() == Qt::MoveAction) {
event->setDropAction(Qt::CopyAction);
}
}
void

Loading…
Cancel
Save