mirror of
https://github.com/overte-org/overte.git
synced 2025-08-07 16:50:43 +02:00
CR
This commit is contained in:
parent
4944d0a8d0
commit
14ae35e741
2 changed files with 4 additions and 2 deletions
|
@ -88,8 +88,10 @@ void DiskCacheEditor::makeDialog() {
|
|||
|
||||
refresh();
|
||||
|
||||
|
||||
static const int REFRESH_INTERVAL = 100; // msec
|
||||
_refreshTimer = new QTimer(_dialog);
|
||||
_refreshTimer->setInterval(100);
|
||||
_refreshTimer->setInterval(REFRESH_INTERVAL);
|
||||
_refreshTimer->setSingleShot(false);
|
||||
QObject::connect(_refreshTimer.data(), &QTimer::timeout, this, &DiskCacheEditor::refresh);
|
||||
_refreshTimer->start();
|
||||
|
|
Loading…
Reference in a new issue