presenter plugin: reduce disappear timeout to 500ms

In contrast to 2000ms
This commit is contained in:
Aleix Pol 2019-07-19 23:23:39 +02:00
parent 52603bfe93
commit 0d26b037c4

View file

@ -61,7 +61,7 @@ PresenterPlugin::PresenterPlugin(QObject* parent, const QVariantList& args)
, m_view(nullptr)
, m_timer(new QTimer(this))
{
m_timer->setInterval(2000);
m_timer->setInterval(500);
m_timer->setSingleShot(true);
}