From 8f5e2094a9149673eaf70335d8f6aca41b1a23f7 Mon Sep 17 00:00:00 2001 From: Thomas Hartmann <Thomas.Hartmann@nokia.com> Date: Fri, 22 Jul 2011 13:04:09 +0200 Subject: [PATCH] QmlDesigner.propertyEditor: reduce delay Since we changed the slection behaivour after drag and drop this makes the designer more responsive. Change-Id: I21c14a126ff0b63151002ac51e841a624b43e879 Reviewed-on: http://codereview.qt.nokia.com/2033 Reviewed-by: Thomas Hartmann <Thomas.Hartmann@nokia.com> --- .../qmldesigner/components/propertyeditor/propertyeditor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/qmldesigner/components/propertyeditor/propertyeditor.cpp b/src/plugins/qmldesigner/components/propertyeditor/propertyeditor.cpp index e6755158c69..a960d347547 100644 --- a/src/plugins/qmldesigner/components/propertyeditor/propertyeditor.cpp +++ b/src/plugins/qmldesigner/components/propertyeditor/propertyeditor.cpp @@ -610,7 +610,7 @@ void PropertyEditor::setQmlDir(const QString &qmlDir) void PropertyEditor::delayedResetView() { if (m_timerId == 0) - m_timerId = startTimer(200); + m_timerId = startTimer(100); } void PropertyEditor::timerEvent(QTimerEvent *timerEvent) -- GitLab