moment/src/gui/Base/HBusyIndicator.qml

20 lines
370 B
QML
Raw Normal View History

2019-12-19 22:46:16 +11:00
// SPDX-License-Identifier: LGPL-3.0-or-later
import QtQuick 2.12
HCircleProgressBar {
2020-05-22 09:54:35 +10:00
progress: 0.5
label.visible: false
baseCircle.strokeWidth: 2
progressCircle.strokeWidth: 2
HNumberAnimation on rotation {
from: 0
to: 360
loops: Animation.Infinite
duration: theme ? (theme.animationDuration * 6) : 600
}
}