Reduce wait time before starting pieces update.

--HG--
branch : develop
This commit is contained in:
Roman Telezhynskyi 2019-01-22 19:06:11 +02:00
parent 7375a457cd
commit f0d38c1c59

View File

@ -236,7 +236,7 @@ void VPattern::Parse(const Document &parse)
} }
domNode = domNode.nextSibling(); domNode = domNode.nextSibling();
} }
QTimer::singleShot(2000, Qt::VeryCoarseTimer, this, SLOT(RefreshPieceGeometry())); QTimer::singleShot(1000, Qt::VeryCoarseTimer, this, SLOT(RefreshPieceGeometry()));
emit CheckLayout(); emit CheckLayout();
} }