QmlDesigner: Increase time out at item creation

Change-Id: Ie077d4a6d322515188a125b520a58b6e98deb2fd
Reviewed-by: Thomas Hartmann <Thomas.Hartmann@digia.com>
This commit is contained in:
Marco Bubke
2013-06-06 13:10:36 +02:00
committed by Thomas Hartmann
parent 4fa2790e53
commit 4a28da1e7e

View File

@@ -399,7 +399,7 @@ void DragTool::dragMoveEvent(QGraphicsSceneDragDropEvent * event)
} else Q_ASSERT(false); } else Q_ASSERT(false);
m_blockMove = true; m_blockMove = true;
m_startPoint = event->scenePos(); m_startPoint = event->scenePos();
QTimer::singleShot(1000, m_timerHandler.data(), SLOT(clearMoveDelay())); QTimer::singleShot(10000, m_timerHandler.data(), SLOT(clearMoveDelay()));
} }
} }