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

SANKORE-267 implement forced min width == 50 and min height == 50 for any widget application

preferencesAboutTextFull
Anatoly Mihalchenko 14 years ago
parent 1d68e7163f
commit 0d12a17535
  1. 2
      src/domain/UBGraphicsDelegateFrame.cpp

@ -299,7 +299,7 @@ void UBGraphicsDelegateFrame::mouseMoveEvent(QGraphicsSceneMouseEvent *event)
QSizeF newSize = resizableItem->size() + incVector;
if (newSize.width() < 0 || newSize.height() < 0)
if (newSize.width() < 50 /*0*/ || newSize.height() < /*0*/ 50)
return;
resizableItem->resize(newSize);

Loading…
Cancel
Save