This commit is contained in:
ChrisTerBeke 2017-09-14 16:09:38 +02:00
commit 4839c922a6
2 changed files with 5 additions and 3 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 29 KiB

After

Width:  |  Height:  |  Size: 31 KiB

Before After
Before After

View file

@ -143,6 +143,7 @@ Item
} }
} }
resolutionSlider.currentQualityIndex = undefined; resolutionSlider.currentQualityIndex = undefined;
backgroundBarUpdateTimer.start();
} }
function updateBar() function updateBar()
@ -246,9 +247,10 @@ Item
anchors.fill: parent anchors.fill: parent
Timer { Timer {
interval: 16 id: backgroundBarUpdateTimer
running: true interval: 10
repeat: true running: false
repeat: false
onTriggered: backgroundBar.requestPaint() onTriggered: backgroundBar.requestPaint()
} }