[ui] ImageDelegate: increase thumbnail timer to 5s

This commit is contained in:
mugulmd 2023-01-23 06:28:30 -08:00
parent dd235dcbf1
commit 2f72f9e7d1

View file

@ -41,10 +41,10 @@ Item {
updateThumbnail(); updateThumbnail();
} }
// Send a new request every 2 seconds until thumbnail is loaded // Send a new request every 5 seconds until thumbnail is loaded
// This is meant to avoid deadlocks in case there is a synchronization problem // This is meant to avoid deadlocks in case there is a synchronization problem
Timer { Timer {
interval: 2000 interval: 5000
repeat: true repeat: true
running: true running: true
onTriggered: { onTriggered: {